F4_Run_Systematic_LactinV_Probiotic.m

Goal: Methodically test te effect of a variety of different probiotic "strains" across an in silico population
Notes: Code takes ~19 hours to run (2.6 GHz 6-Core Intel Core i7 Processor)

1. Load Model Defaults

The defaults have the Lactin-V regimen defined.
clear; clc;
output_fdr = 'result_workspaces/';
ws_name = 'input_files/SSConfig-Analysis-HMP-Virtual-Population.mat';
simulationType = "comboLV";
[POPinfo,PROBinfo,ABXinfo,~] = define_Common_Simulation_Inputs(ws_name,simulationType);
The antibiotic dose could be -2.64 d^-1 or -3.82 d^-1. Here, we run the simulation with the "weaker" antibiotic strengtth.
ABXinfo.dose = -2.64;
Define Strains to Evaluate
strainListLHS: # strains x # probiotic parameter matrix generated by LHS in B1_Generate_Virtual_Population
load(ws_name,'strainListLHS')

3. Run Analysis on Each Strain

all_select_outcomes = NaN(size(strainListLHS,1),length(POPinfo.Indexes),8+length(PROBinfo.customEvalPoints),5);
all_warnall = NaN(size(strainListLHS,1),length(POPinfo.Indexes));
c = 0;
t = tic;
for combo_id = 1:size(strainListLHS,1)
tic
disp(strcat("Combination #", num2str(combo_id)))
PROBinfo.strainCharacteristics = strainListLHS(combo_id,:);
[select_outcomes, meanstdDuring, warnall, ...
nonBVflag] = simulate_Clinical_Regimens_LV(ABXinfo,PROBinfo,POPinfo);
 
all_select_outcomes(combo_id,:,:,:) = select_outcomes;
all_warnall(combo_id,:) = warnall == "";
 
% After ten runs, pause for 5 minutes
disp(strcat("Combination #", num2str(combo_id)))
if c == 10
pause(60*5); c = 0;
% Saves results with each iteration (code takes ~10 hours to run,
% protects against losing data)
save('F4_Systematic_LactinV_Probiotic.mat','all_warnall','all_select_outcomes','POPinfo','combo_id',...
'strainListLHS', 'PROBinfo','ABXinfo')
else
c = c + 1;
end
toc
 
end
Combination #1
Starting parallel pool (parpool) using the 'local' profile ... Connected to the parallel pool (number of workers: 12). RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.131840e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.720295e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=3.517690e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.161235e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.052392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.109576e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.212758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #61 Warning: Failure at t=1.084586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.874521e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.356312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 Warning: Failure at t=5.735575e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.586476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #7 Warning: Failure at t=1.570083e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (...
Combination #1
Elapsed time is 93.578124 seconds.
Combination #2
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.140176e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.388186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.147539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.098338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.407902e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 Warning: Failure at t=1.101960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.241706e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=3.026891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 Warning: Failure at t=1.682090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700...
Combination #2
Elapsed time is 61.542957 seconds.
Combination #3
RUNNING ... #9 Warning: Failure at t=1.295303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.165772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.783927e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.072860e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.234953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.309103e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.168748e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=2.139935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.506590e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.522333e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to mee...
Combination #3
Elapsed time is 50.014257 seconds.
Combination #4
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.968718e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.150363e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.482206e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.172592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.137628e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=2.388544e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #90 Warning: Failure at t=1.132001e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.153670e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.117946e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.116438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.187264e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=1.244125e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFun...
Combination #4
Elapsed time is 58.809949 seconds.
Combination #5
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=3.598513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.227165e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=4.446748e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 Warning: Failure at t=6.744050e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.494719e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=4.736798e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.778753e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.110432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.060754e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.194448e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the sm...
Combination #5
Elapsed time is 60.119952 seconds.
Combination #6
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #887 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #319 RUNNING ... #318 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #398 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #793 RUNNING ... #792 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.150...
Combination #6
Elapsed time is 35.471716 seconds.
Combination #7
RUNNING ... #9 Warning: Failure at t=1.056938e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.073324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.208668e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.102912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.287537e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.362312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.119849e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.093018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #7
Elapsed time is 31.924461 seconds.
Combination #8
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.629435e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.158899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 RUNNING ... #55 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #740 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=5.159502e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.159394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #47 RUNNING ... #46 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 Warning: Failure at t=1.793644e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #100 RUNNING ... #182 RUNNING ... #181 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #421 RUNNING ... #499 RUNNING ... #653 Warning: Failure at t=1.761373e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #819 RUNNING ... #818 RUNNING ... #895 RUNNING ... #894 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_fun...
Combination #8
Elapsed time is 63.870789 seconds.
Combination #9
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.196272e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.074128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.190716e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 Warning: Failure at t=1.009423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038481e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.218630e+0...
Combination #9
Elapsed time is 35.551287 seconds.
Combination #10
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.238362e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.351813e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #54 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=2.090317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.897879e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.994144e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.372118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #80 RUNNING ... #99 Warning: Failure at t=3.255172e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.420590e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.268730e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.081846e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteP...
Combination #10
Elapsed time is 79.357980 seconds.
Combination #11
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.106876e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.152042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.242281e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.853586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.114467e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=1.588937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.620855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009125e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.476733e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.061760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (li...
Combination #11
Elapsed time is 367.913297 seconds.
Combination #12
RUNNING ... #9 Warning: Failure at t=1.147167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.248375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.657979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.184888e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.247331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=2.289731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.569989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.290013e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.835462e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.267960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the st...
Combination #12
Elapsed time is 42.279304 seconds.
Combination #13
RUNNING ... #9 Warning: Failure at t=1.199317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.126730e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.561336e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.169710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.219611e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.175231e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.070678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.003343e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.181166e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.151956e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #13
Elapsed time is 36.507061 seconds.
Combination #14
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.477246e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.423341e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=5.584105e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.132955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #89 RUNNING ... #88 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.974664e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.066480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=1.009292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (...
Combination #14
Elapsed time is 50.291730 seconds.
Combination #15
RUNNING ... #9 Warning: Failure at t=1.128643e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.601524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.609309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.121934e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.195336e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.630176e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.291270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.157625e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.161864e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #15
Elapsed time is 37.026393 seconds.
Combination #16
RUNNING ... #9 RUNNING ... #8 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.706283e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.649514e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.148912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=2.500866e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=5.832553e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 Warning: Failure at t=1.757067e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.714783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=7.242202e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.859439e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=4.557827e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069148e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.009353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_chann...
Combination #16
Elapsed time is 55.718483 seconds.
Combination #17
RUNNING ... #9 Warning: Failure at t=1.058005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.073968e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.170978e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.096055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.204391e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.740113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.109383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.088422e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.085263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #17
Elapsed time is 34.765369 seconds.
Combination #18
RUNNING ... #9 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=3.730846e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=8.327639e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.208778e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #44 RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=3.917858e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.010561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.858156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #28 RUNNING ... #53 Warning: Failure at t=1.936029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=2.361874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #25 Warning: Failure at t=2.055080e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=9.358046e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=4.257203e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the ...
Combination #18
Elapsed time is 49.542400 seconds.
Combination #19
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=3.586379e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.537112e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=3.354033e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.586336e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=5.463409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.395304e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.231589e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.311731e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=1.131151e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #93 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #19 Warning: Failure at t=1.082437e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076799e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #58 Warning: Failure at t=1.621889e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #185 RUNNING ... #184 Warning: Failure at t=2.547410e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=4.613874e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #740 Warning: Failure at t=3.531833e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+0...
Combination #19
Elapsed time is 76.555153 seconds.
Combination #20
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.158065e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.294298e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.134684e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.484044e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.052700e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.073909e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.200893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.414531e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.192740e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 Warning: Failure at t=1.124362e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.162994e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14...
Combination #20
Elapsed time is 72.425236 seconds.
Combination #21
RUNNING ... #9 Warning: Failure at t=1.185628e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.089992e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.721866e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.149691e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=2.047101e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.052509e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.172444e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.256535e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.189188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.310434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.145879e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without...
Combination #21
Elapsed time is 65.256779 seconds.
Combination #22
RUNNING ... #9 Warning: Failure at t=1.271526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.033667e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.890838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.365896e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.659876e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.628492e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.573287e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.827359e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.172766e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=2.469304e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.240758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) ...
Combination #22
Elapsed time is 366.459572 seconds.
Combination #23
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.414152e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.266686e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.650377e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.507335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.924991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.213258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.050549e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 Warning: Failure at t=1.730508e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.459961e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.323685e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFun...
Combination #23
Elapsed time is 73.854264 seconds.
Combination #24
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.432121e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 Warning: Failure at t=2.505770e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009289e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.554062e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.343655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.257471e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 RUNNING ... #83 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.125770e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.064583e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet...
Combination #24
Elapsed time is 83.065599 seconds.
Combination #25
RUNNING ... #9 Warning: Failure at t=1.374952e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=3.054232e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.310193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.226043e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.391079e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.404143e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.577776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.301123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.097507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.604712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #25
Elapsed time is 47.328029 seconds.
Combination #26
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.370725e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.061254e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=2.570347e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #90 RUNNING ... #89 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=5.351435e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=2.760178e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #40 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.871783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=4.250596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.795666e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009265e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #103 RUNNING ... #102 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=2.865209e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #32 Warning: Failure at t=1.128134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=3.199219e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 RUNNING ... #29 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s ...
Combination #26
Elapsed time is 75.997744 seconds.
Combination #27
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.155576e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.333458e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.417265e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 Warning: Failure at t=1.587813e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.578146e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.503032e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=2.568249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 Warning: Failure at t=1.362001e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.020226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.780907e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=3.429298e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_chann...
Combination #27
Elapsed time is 82.371138 seconds.
Combination #28
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.193241e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.360059e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.225891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=2.673899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=2.934440e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=4.060781e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=3.575234e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.261942e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #26 Warning: Failure at t=1.729429e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.273179e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) ...
Combination #28
Elapsed time is 43.661162 seconds.
Combination #29
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.860211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #45 RUNNING ... #44 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.507067e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #14 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.452172e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.274449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.465521e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 Warning: Failure at t=1.959912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.119725e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 Warning: Failure at t=1.452485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.10000...
Combination #29
Elapsed time is 94.645781 seconds.
Combination #30
RUNNING ... #9 Warning: Failure at t=1.060798e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.045005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.196146e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.075531e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.124605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.048812e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.167782e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.160861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.1368...
Combination #30
Elapsed time is 41.766577 seconds.
Combination #31
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.545912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.162212e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=7.477660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.087071e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.767506e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #84 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=2.992032e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.430023e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=3.359300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.009379e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=...
Combination #31
Elapsed time is 68.781516 seconds.
Combination #32
RUNNING ... #9 Warning: Failure at t=1.174326e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.507211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.849719e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.219084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.253645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.832327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.969342e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.436099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=2.196829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.314958e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.182792e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #32
Elapsed time is 40.557565 seconds.
Combination #33
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.118968e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.176481e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.224511e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.145189e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.102676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.247527e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.034055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.712450e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 Warning: Failure at t=1.596158e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67)...
Combination #33
Elapsed time is 1354.703883 seconds.
Combination #34
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.111230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.270835e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 Warning: Failure at t=5.857004e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.052807e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.524257e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.094947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.471144e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.040924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.085630e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.114875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In ...
Combination #34
Elapsed time is 93.737498 seconds.
Combination #35
RUNNING ... #9 RUNNING ... #27 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #108 RUNNING ... #107 RUNNING ... #4 Warning: Failure at t=1.522837e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.868885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #15 RUNNING ... #14 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 Warning: Failure at t=1.141871e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068116e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.637971e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=1.220663e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #740 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #898 RUNNING ... #897 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=4.054878e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=1.448650e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the st...
Combination #35
Elapsed time is 68.705073 seconds.
Combination #36
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.152096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=9.726293e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #28 Warning: Failure at t=1.069753e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=4.272088e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=2.227840e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #73 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 Warning: Failure at t=1.913867e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.164272e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.310085e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.037262e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to mee...
Combination #36
Elapsed time is 41.193437 seconds.
Combination #37
RUNNING ... #9 Warning: Failure at t=1.105306e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.387000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.583860e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 Warning: Failure at t=1.125043e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.119154e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.347516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.216956e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.106802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=2.060380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.096404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #37
Elapsed time is 42.875387 seconds.
Combination #38
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.147625e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=3.119310e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068750e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=4.100950e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=9.566498e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.725360e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009361e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.835154e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #46 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=3.157803e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 Warning: Failure at t=1.458570e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.151327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=2.002524e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 Warning: Failure at t=1.486190e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances w...
Combination #38
Elapsed time is 40.315332 seconds.
Combination #39
RUNNING ... #9 Warning: Failure at t=1.054334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.689728e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.117360e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.105955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.068459e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.059764e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.154383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.094019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.083849e+01. Unable to meet integration tolerances without reducing the st...
Combination #39
Elapsed time is 45.863569 seconds.
Combination #40
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #43 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=6.303755e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 Warning: Failure at t=1.508086e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.482436e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=2.220500e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=4.735265e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.136270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=2.212908e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067221e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.798531e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=2.719807e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #1 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Un...
Combination #40
Elapsed time is 82.765284 seconds.
Combination #41
RUNNING ... #9 Warning: Failure at t=1.770275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=5.700136e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.404114e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.516821e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=4.855648e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=3.149894e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.929678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.719486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.628341e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.760529e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.290802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=2.413543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to me...
Combination #41
Elapsed time is 42.199117 seconds.
Combination #42
RUNNING ... #9 RUNNING ... #27 Warning: Failure at t=1.193132e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.699442e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.175760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.683581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 Warning: Failure at t=1.162040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.943369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.350933e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.821019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.666776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integra...
Combination #42
Elapsed time is 43.552580 seconds.
Combination #43
RUNNING ... #9 RUNNING ... #18 RUNNING ... #63 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.359930e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.632292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 Warning: Failure at t=1.493163e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009120e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.216596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.105795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #85 Warning: Failure at t=2.148143e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 Warning: Failure at t=2.391598e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.934744e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #1 Warning: Failure at t=1.498207e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #28 Warning: Failure at t=1.058506e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line ...
Combination #43
Elapsed time is 82.018153 seconds.
Combination #44
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.153088e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.574816e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.162213e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 Warning: Failure at t=8.442201e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #66 Warning: Failure at t=1.009367e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=5.802728e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest valu...
Combination #44
Elapsed time is 347.063135 seconds.
Combination #45
RUNNING ... #9 Warning: Failure at t=1.067661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.070921e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.192029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=7.413796e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.127381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.100434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.075506e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.165914e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.152604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #45
Elapsed time is 41.384881 seconds.
Combination #46
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=3.417615e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.623891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=2.714785e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=2.873960e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.491257e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.666844e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=1.385821e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=9.284665e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=3.028434e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=3.983276e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.138753e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #56 Warning: Failure at t=4.730477e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.009317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 Warning: Failure at t=2.340897e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.652209e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #103 RUNNING ... #102 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.166807e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067928e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line ...
Combination #46
Elapsed time is 58.964885 seconds.
Combination #47
RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009557e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #4 Warning: Failure at t=1.864385e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.081979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.040953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #178 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #419 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failu...
Combination #47
Elapsed time is 43.507340 seconds.
Combination #48
RUNNING ... #9 Warning: Failure at t=1.049766e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.184161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.088932e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.878974e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.105320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.063613e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.053532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.138719e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.083369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value ...
Combination #48
Elapsed time is 46.266697 seconds.
Combination #49
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.337954e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=2.590702e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #72 RUNNING ... #71 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.452243e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #34 Warning: Failure at t=4.418246e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.222337e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.602501e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=2.326855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.090273e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #92 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.125888e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the sma...
Combination #49
Elapsed time is 74.117502 seconds.
Combination #50
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.031194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.283948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.880356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.666310e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.956165e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 Warning: Failure at t=1.645504e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.435524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.119956e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #43 RUNNING ... #42 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.227871e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_genera...
Combination #50
Elapsed time is 86.887836 seconds.
Combination #51
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009443e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.532652e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.184790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.078774e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.883787e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.040944e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the sma...
Combination #51
Elapsed time is 40.502135 seconds.
Combination #52
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.188915e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009179e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 Warning: Failure at t=1.777992e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.450912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 Warning: Failure at t=1.238928e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 Warning: Failure at t=1.489953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (li...
Combination #52
Elapsed time is 87.710581 seconds.
Combination #53
RUNNING ... #9 Warning: Failure at t=1.348188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.189330e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.885323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.077498e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.260886e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.355465e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.184562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=2.400383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.603047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.709664e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to mee...
Combination #53
Elapsed time is 50.732013 seconds.
Combination #54
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.644181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.269293e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.197305e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.104440e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=1.372716e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.368124e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.415758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.058765e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallel...
Combination #54
Elapsed time is 77.525002 seconds.
Combination #55
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.077813e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.233315e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.378476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.168559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=2.594624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.650223e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.677704e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.234587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.086855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.473031e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+...
Combination #55
Elapsed time is 366.064191 seconds.
Combination #56
RUNNING ... #9 Warning: Failure at t=1.094096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.272446e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.297696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.216624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.170180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.237474e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.226208e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.093829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.092261e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #56
Elapsed time is 39.938912 seconds.
Combination #57
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.332288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.247309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.253910e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.463947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.047433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.247470e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.905416e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.315020e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.353935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.208335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ...
Combination #57
Elapsed time is 74.175385 seconds.
Combination #58
RUNNING ... #9 Warning: Failure at t=1.112450e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.630747e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.566382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.119043e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.199738e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.790244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.239968e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.156679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.066473e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.487126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #58
Elapsed time is 37.122280 seconds.
Combination #59
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.307044e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.402036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.254424e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.228722e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.129815e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=2.463962e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 Warning: Failure at t=1.356417e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 Warning: Failure at t=1.287700e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>...
Combination #59
Elapsed time is 67.891893 seconds.
Combination #60
RUNNING ... #9 Warning: Failure at t=1.053829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.301674e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.196294e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.494214e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.064815e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.059365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.149037e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.092348e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.081555e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.124871e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #60
Elapsed time is 52.625222 seconds.
Combination #61
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.440373e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.310947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=2.200453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.099073e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #86 Warning: Failure at t=3.884045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.482317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.062580e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #32 Warning: Failure at t=1.122789e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.009239e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without re...
Combination #61
Elapsed time is 84.023646 seconds.
Combination #62
RUNNING ... #9 Warning: Failure at t=1.181446e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.091145e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.800921e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.388419e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.177248e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.055808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.272017e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.320042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.156525e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.599649e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the st...
Combination #62
Elapsed time is 43.097375 seconds.
Combination #63
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.123602e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 Warning: Failure at t=1.722988e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 Warning: Failure at t=1.296937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.311661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063956e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #94 RUNNING ... #93 Warning: Failure at t=2.756367e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #48 RUNNING ... #66 Warning: Failure at t=1.009295e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #21 RUNNING ... #20 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/ch...
Combination #63
Elapsed time is 87.699662 seconds.
Combination #64
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time...
Combination #64
Elapsed time is 38.658572 seconds.
Combination #65
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.184127e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.354207e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=7.327318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 RUNNING ... #108 Warning: Failure at t=1.080146e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #81 RUNNING ... #80 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.153183e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.837834e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.061065e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.139257e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.248944e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.432502e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.255346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet ...
Combination #65
Elapsed time is 98.915898 seconds.
Combination #66
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=5.083441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.671263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.160552e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #101 RUNNING ... #100 RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=2.674502e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #740 Warning: Failure at t=1.910494e+01. Unable to meet...
Combination #66
Elapsed time is 389.087114 seconds.
Combination #67
RUNNING ... #9 Warning: Failure at t=1.107249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.474377e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.187808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.466176e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.230989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.227737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.135131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.115550e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.309259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.279699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.179577e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tol...
Combination #67
Elapsed time is 46.223099 seconds.
Combination #68
RUNNING ... #9 Warning: Failure at t=1.248709e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.340375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=3.377073e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.470197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.309410e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.919742e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=2.077380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.320255e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.714651e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 Warning: Failure at t=1.335036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=3.951484e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.194755e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure a...
Combination #68
Elapsed time is 50.484542 seconds.
Combination #69
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #157 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chann...
Combination #69
Elapsed time is 35.620193 seconds.
Combination #70
RUNNING ... #9 Warning: Failure at t=1.111575e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.109654e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.374205e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.196895e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.164894e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.132520e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.162769e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.157984e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.085926e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342...
Combination #70
Elapsed time is 33.511699 seconds.
Combination #71
RUNNING ... #9 Warning: Failure at t=1.078673e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.066973e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.283434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.155759e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.130084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.108632e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.137073e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.073220e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.229635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #71
Elapsed time is 33.792709 seconds.
Combination #72
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=4.088605e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.791921e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.508203e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=2.128571e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #46 RUNNING ... #56 RUNNING ... #55 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.512011e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.148252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069846e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 Warning: Failure at t=4.542278e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=3.452684e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 Warning: Failure at t=1.422863e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.780172e+01. Unable to meet integration tolerances without reducing t...
Combination #72
Elapsed time is 5411.052286 seconds.
Combination #73
Starting parallel pool (parpool) using the 'local' profile ... Connected to the parallel pool (number of workers: 12). RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #53 Warning: Failure at t=1.697709e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.927940e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #62 RUNNING ... #71 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 Warning: Failure at t=2.463935e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #8 Warning: Failure at t=8.093280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #70 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #105 RUNNING ... #7 RUNNING ... #25 Warning: Failure at t=1.370516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 RUNNING ... #42 RUNNING ... #12 RUNNING ... #52 RUNNING ... #58 RUNNING ... #57 RUNNING ... #69 RUNNING ... #77 Warning: Failure at t=3.318486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #104 RUNNING ... #6 RUNNING ... #11 Warning: Failure at t=1.131141e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=2.322359e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 RUNNING ... #29 RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 Warning: Failure at t=2.118556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #87 RUNNING ... #86 RUNNING ... #5 RUNNING ... #10 Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.764042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #28 Warning: Failure at t=1.066289e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In od...
Combination #73
Elapsed time is 132.220436 seconds.
Combination #74
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.156871e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071598e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.802441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.037873e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732...
Combination #74
Elapsed time is 37.124916 seconds.
Combination #75
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.671635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.210699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #99 Warning: Failure at t=2.551604e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.525397e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.439642e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #8 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.243583e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.549157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.959715e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.910435e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 Warning: Failure at t=1.392646e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.60...
Combination #75
Elapsed time is 121.725021 seconds.
Combination #76
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.404395e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #43 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.618681e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 Warning: Failure at t=4.489559e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=1.433044e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=2.802018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 Warning: Failure at t=2.486230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.009310e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=4.563617e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.107923e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #32 Warning: Failure at t=1.130858e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet ...
Combination #76
Elapsed time is 83.245330 seconds.
Combination #77
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #893 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.040359e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 Warning: Failure at t=1.038855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at tim...
Combination #77
Elapsed time is 347.199342 seconds.
Combination #78
RUNNING ... #9 Warning: Failure at t=1.142257e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.080771e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.832581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.312663e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.980161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.301884e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.103121e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=3.062548e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 Warning: Failure at t=1.319421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.450750e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=8.588028e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 Warning: Failure at t=1.168072e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Fail...
Combination #78
Elapsed time is 70.787273 seconds.
Combination #79
RUNNING ... #9 Warning: Failure at t=1.039550e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.035166e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.136078e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.070873e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.191483e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.611192e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.081624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.059993e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #79
Elapsed time is 33.203558 seconds.
Combination #80
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.792919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #54 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.235704e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.555370e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.571253e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 Warning: Failure at t=2.320329e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 Warning: Failure at t=1.393163e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.111596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.179696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.009177e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>mak...
Combination #80
Elapsed time is 66.273637 seconds.
Combination #81
RUNNING ... #9 Warning: Failure at t=1.112276e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.453650e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.218169e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.112233e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.171380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.933389e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.391479e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.222125e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.554298e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.204119e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without ...
Combination #81
Elapsed time is 46.028108 seconds.
Combination #82
RUNNING ... #9 Warning: Failure at t=1.698458e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=3.536098e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.130317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.681957e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.192587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.380198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.585566e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.606659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.160175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=4.273593e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.613726e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tol...
Combination #82
Elapsed time is 43.360891 seconds.
Combination #83
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #44 RUNNING ... #63 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.225029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076714e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009442e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #47 RUNNING ... #46 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #181 RUNNING ... #261 RUNNING ... #260 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #420 RUNNING ... #419 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #259 Warning: Failure at t=1.039339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #332 RUNNING ... #331 Warning: Failure at t=1.082296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure...
Combination #83
Elapsed time is 52.150317 seconds.
Combination #84
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009576e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.098200e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #73 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.043698e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #420 RUNNING ... #419 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #887 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s ...
Combination #84
Elapsed time is 43.641695 seconds.
Combination #85
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.213606e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #259 Warning: Failure at t=1.038986e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 Warning: Failure at t=1.040195e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.89063...
Combination #85
Elapsed time is 36.855585 seconds.
Combination #86
RUNNING ... #9 Warning: Failure at t=1.058258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.082041e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.183556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.098825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.201980e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.112619e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.090832e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.102357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.091438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #86
Elapsed time is 33.351332 seconds.
Combination #87
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.360088e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=6.376647e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.889740e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=2.583120e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 Warning: Failure at t=2.720671e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.935949e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.552237e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 Warning: Failure at t=1.990205e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.445449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=1.543324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=4.046514e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at ...
Combination #87
Elapsed time is 60.424298 seconds.
Combination #88
RUNNING ... #9 Warning: Failure at t=1.095525e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.329732e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.440047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.105426e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.170887e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.267052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.200727e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.137285e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.511276e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.361131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #88
Elapsed time is 344.816390 seconds.
Combination #89
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.126948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.361325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 Warning: Failure at t=1.116730e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.228734e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=2.438176e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.206876e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #49 Warning: Failure at t=1.047759e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.593264e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing...
Combination #89
Elapsed time is 78.027059 seconds.
Combination #90
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.212017e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.334608e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.106552e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.276080e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=1.514556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.162142e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.000674e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.343396e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=1.639881e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.258249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (l...
Combination #90
Elapsed time is 49.927512 seconds.
Combination #91
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.535092e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.148366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.195286e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.165352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.350740e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.198828e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.044251e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #90 Warning: Failure at t=1.136209e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.188334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+...
Combination #91
Elapsed time is 84.174647 seconds.
Combination #92
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.079579e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.040147e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 Warning: Failure at t=4.327868e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line ...
Combination #92
Elapsed time is 39.194031 seconds.
Combination #93
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.972200e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 RUNNING ... #3 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 Warning: Failure at t=1.449613e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.220135e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.140991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068291e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=4.900087e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #93 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.324600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at ...
Combination #93
Elapsed time is 65.920175 seconds.
Combination #94
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.914372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.651352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.101484e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.234809e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.430655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 Warning: Failure at t=1.533071e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.105106e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 Warning: Failure at t=1.202986e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning:...
Combination #94
Elapsed time is 194.047513 seconds.
Combination #95
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.272435e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.555969e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.975348e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.880068e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.188622e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.075720e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #55 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=1.009486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #1056 Warning: Failure at t=1.325676e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=1.308696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #740 Warning: Failure at t=2.736449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.203603e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances witho...
Combination #95
Elapsed time is 61.963286 seconds.
Combination #96
RUNNING ... #9 Warning: Failure at t=1.063433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.223937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.107954e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.155813e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.127247e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 Warning: Failure at t=1.140918e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.096307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=2.532560e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.173051e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.055070e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the ste...
Combination #96
Elapsed time is 47.662797 seconds.
Combination #97
RUNNING ... #9 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.699162e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #96 Warning: Failure at t=1.959260e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 RUNNING ... #14 RUNNING ... #61 RUNNING ... #60 RUNNING ... #79 RUNNING ... #78 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.362995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.203024e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.472267e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.439382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.493791e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.101635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_genera...
Combination #97
Elapsed time is 92.749111 seconds.
Combination #98
RUNNING ... #9 Warning: Failure at t=1.127768e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.313285e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.214542e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.196188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.265633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.212631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.396862e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.212326e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=3.516822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.008897e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #98
Elapsed time is 38.772365 seconds.
Combination #99
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=3.013827e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 Warning: Failure at t=3.212565e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 RUNNING ... #24 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=5.206852e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.233142e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.809716e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.333938e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=2.092143e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=9.288230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #49 Warning: Failure at t=1.047592e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 Warning: Failure at t=2.721954e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #105 RUNNING ... #104 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.354718e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #46 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.010666e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=2.930311e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=4.174876e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #74 RUNNING ... #73 Warning: Failure at t=4.455934e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #187 RUNNING ... #186 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #29 Warning: Failure at t=3.654581e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #28 Warning: Failure at t=1.096947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 Warning: Failure at t=4.302719e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #580 RUNNING ... #579 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 Warning: Failure at t=3.375696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #92 RUNNING ... #91 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=4.964437e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.934393e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #898 RUNNING ... #897 RUNNING ... #977 Warning: Failure at t=2.279666e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #976 RUNNING ... #975 Warning: Failure at t=3.749894e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #101 RUNNING ... #100 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #263 Warning: Failure at t=1.306712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest va...
Combination #99
Elapsed time is 381.339534 seconds.
Combination #100
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.443219e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.293437e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=2.085761e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.120657e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.028320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=2.449751e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remote...
Combination #100
Elapsed time is 67.428136 seconds.
Combination #101
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.820259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.070567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.682736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #4 Warning: Failure at t=1.274380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.243965e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.560758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #93 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=1.659865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.113785e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.20...
Combination #101
Elapsed time is 62.182645 seconds.
Combination #102
RUNNING ... #9 Warning: Failure at t=1.207671e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.117929e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.339477e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.433540e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.200436e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.300477e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.080925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.253304e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.045027e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.131417e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without ...
Combination #102
Elapsed time is 41.024523 seconds.
Combination #103
RUNNING ... #9 Warning: Failure at t=1.092303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.084416e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.315229e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.158724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.379881e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.786048e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.182775e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.135832e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.174390e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.079788e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #103
Elapsed time is 34.746339 seconds.
Combination #104
RUNNING ... #9 Warning: Failure at t=1.060728e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.054800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.191230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.106592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.321835e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.282887e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.117324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.092508e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #104
Elapsed time is 33.317257 seconds.
Combination #105
RUNNING ... #9 Warning: Failure at t=1.075254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.074833e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.260097e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.133412e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.247597e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.210454e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.142329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.113369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #105
Elapsed time is 32.290457 seconds.
Combination #106
RUNNING ... #9 Warning: Failure at t=1.043449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.052259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.159021e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.079019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.324235e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.092628e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 Warning: Failure at t=1.048487e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.048021e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.122076e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #106
Elapsed time is 36.480574 seconds.
Combination #107
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.186699e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 Warning: Failure at t=2.354987e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=3.129440e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.637418e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #89 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=9.486933e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=2.939279e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.357743e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.603936e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.321119e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.269448e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.719506e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=8.211701e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.178090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=2.997147e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.006398e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 Warning: Failure at t=4.993241e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=4.393320e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.367510e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=2.258999e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=3.097152e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #10 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=5.095103e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 RUNNING ... #29 Warning: Failure at t=3.495160e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #28 Warning: Failure at t=1.072548e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #104 RUNNING ... #103 RUNNING ... #187 Warning: Failure at t=4.370481e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #582 RUNNING ... #57 Warning: Failure at t=2.389856e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=3.367060e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #83 RUNNING ... #82 RUNNING ... #977 Warning: Failure at t=2.280411e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #976 RUNNING ... #975 Warning: Failure at t=2.813591e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet i...
Combination #107
Elapsed time is 105.586352 seconds.
Combination #108
RUNNING ... #9 Warning: Failure at t=1.043278e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.144324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.075545e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.310225e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.086602e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.076861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.075822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.051817e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.047256e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #108
Elapsed time is 40.958249 seconds.
Combination #109
RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.093713e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.301863e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.076543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.179334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.839244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=2.045329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.304020e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.119958e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.756387e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.338247e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 Warning: Failure at t=1.554873e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general ...
Combination #109
Elapsed time is 60.940473 seconds.
Combination #110
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.405975e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=4.604971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.792375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.459640e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 Warning: Failure at t=2.954627e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.525722e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.691569e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.131615e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remo...
Combination #110
Elapsed time is 380.837718 seconds.
Combination #111
RUNNING ... #9 Warning: Failure at t=1.257550e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.125504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.516040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.055917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.543648e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.092840e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.194431e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.716664e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.724010e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01....
Combination #111
Elapsed time is 71.133866 seconds.
Combination #112
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.518201e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.297894e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009221e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 Warning: Failure at t=2.549863e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.453612e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.122513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=2.019977e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=5.502599e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.174717e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.117908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tole...
Combination #112
Elapsed time is 79.631201 seconds.
Combination #113
RUNNING ... #9 Warning: Failure at t=1.128941e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.233022e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.612042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.137310e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.184048e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.254821e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.365994e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.132270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.511409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.1368...
Combination #113
Elapsed time is 33.722997 seconds.
Combination #114
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.674703e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #25 Warning: Failure at t=1.773777e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.754258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.142128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=4.749781e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.506501e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 Warning: Failure at t=1.268714e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #100 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068767e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01....
Combination #114
Elapsed time is 59.829513 seconds.
Combination #115
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.419950e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.527365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009221e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=2.324384e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.279923e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.937128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.046312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #740 Warning: Failure at t=1.281790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.117989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to mee...
Combination #115
Elapsed time is 79.511507 seconds.
Combination #116
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.713318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.937725e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=6.983023e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.397559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=7.126299e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 Warning: Failure at t=1.727090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=2.450388e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.799410e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=2.095151e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.649270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.0...
Combination #116
Elapsed time is 45.559761 seconds.
Combination #117
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #27 RUNNING ... #26 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #74 RUNNING ... #73 RUNNING ... #91 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.046442e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #47 RUNNING ... #46 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 Warning: Failure at t=1.039462e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #887 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_ge...
Combination #117
Elapsed time is 42.286004 seconds.
Combination #118
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #52 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=4.334798e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #5 Warning: Failure at t=4.688315e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.541632e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #59 RUNNING ... #58 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=4.530265e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #57 RUNNING ... #67 Warning: Failure at t=4.842212e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=3.318490e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.156391e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #1 Warning: Failure at t=2.585076e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #10 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #740 Warning: Failure at t=1.515645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #82 RUNNING ... #977 RUNNING ... #976 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=2.757554e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFu...
Combination #118
Elapsed time is 89.899807 seconds.
Combination #119
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009358e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.522204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.165302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 Warning: Failure at t=1.155827e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070374e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 Warning: Failure at t=1.547027e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unab...
Combination #119
Elapsed time is 40.214214 seconds.
Combination #120
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #90 RUNNING ... #108 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #56 RUNNING ... #55 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #92 RUNNING ... #101 RUNNING ... #100 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #91 RUNNING ... #181 RUNNING ... #180 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #419 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #887 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #802 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #633 RUNNING ... #632 RUNNING ... #631 RUNNING ... #630 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #953 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #1025 RUNNING ... #1024 RUNNING ... #1023 RUNNING ... #1022 RUNNING ... #1021 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.564620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.264620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.564620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.264620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #239 RUNNING ... #238 RUNNING ... #237 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #474 RUNNING ... #473 RUNNING ... #472 RUNNING ... #471 RUNNING ... #470 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #629 RUNNING ... #628 RUNNING ... #627 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #948 RUNNING ... #947 RUNNING ... #946 RUNNING ... #945 RUNNING ... #944 RUNNING ... #1020 RUNNING ... #1019 RUNNING ... #1018 RUNNING ... #1017 RUNNING ... #1016 RUNNING ....
Combination #120
Elapsed time is 45.713455 seconds.
Combination #121
RUNNING ... #9 Warning: Failure at t=1.072872e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.257334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.125563e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.114965e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.148268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.091950e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.078292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.191604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.124455e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value ...
Combination #121
Elapsed time is 354.067657 seconds.
Combination #122
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.112232e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=9.232797e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.897481e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 Warning: Failure at t=2.746895e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 Warning: Failure at t=4.525241e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 Warning: Failure at t=1.805085e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 Warning: Failure at t=2.868727e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.819118e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 Warning: Failure at t=4.011522e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #69 RUNNING ... #88 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=5.202693e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.463604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.469507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.413219e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=4.951573e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 RUNNING ... #96 Warning: Failure at t=3.882366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #105 Warning: Failure at t=2.299341e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 Warning: Failure at t=4.669667e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=2.613504e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #10 RUNNING ... #33 RUNNING ... #32 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.879624e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=2.314085e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 Warning: Failure at t=9.461033e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #5 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.136018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=3.010115e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 RUNNING ... #29 RUNNING ... #51 Warning: Failure at t=6.018777e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=4.550711e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=4.927209e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=4.619336e+02. Unabl...
Combination #122
Elapsed time is 454.284081 seconds.
Combination #123
RUNNING ... #9 Warning: Failure at t=1.086083e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.079959e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.379303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.162419e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.404103e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.173099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.187469e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.073738e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.280177e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #123
Elapsed time is 34.860240 seconds.
Combination #124
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #157 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing t...
Combination #124
Elapsed time is 38.112864 seconds.
Combination #125
RUNNING ... #9 Warning: Failure at t=1.212100e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.118256e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.246203e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=9.950515e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.292166e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.232082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.077259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 Warning: Failure at t=1.217850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.406559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.339844e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 Warning: Failure at t=1.349412e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure a...
Combination #125
Elapsed time is 45.375839 seconds.
Combination #126
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.603252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.305019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=1.299215e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.132996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.250588e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 Warning: Failure at t=1.726146e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 Warning: Failure at t=1.721903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.385865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #67 Warning: Failure at t=1.432924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.50000...
Combination #126
Elapsed time is 83.541204 seconds.
Combination #127
RUNNING ... #9 Warning: Failure at t=1.413090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=9.276384e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.342584e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.443703e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.126915e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.314328e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.364046e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.696819e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.069416e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.200137e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=1.939861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67)...
Combination #127
Elapsed time is 45.928890 seconds.
Combination #128
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.532660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009474e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.011250e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #1 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.190046e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.077750e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 Warning: Failure at t=1.588851e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #819 RUNNING ... #818 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.898271e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 Warning: Failure at t=2.173911e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #895 RUNNING ... #894 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #420 RUNNING ... #419 RUNNING ... #499 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #732 RUNNING ... #731 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #176 RUNNING ... #259 Warning: Failure at t=1.040483e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remo...
Combination #128
Elapsed time is 65.584398 seconds.
Combination #129
RUNNING ... #9 Warning: Failure at t=1.090244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.059825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.441311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.356550e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.200201e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.053777e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.328235e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.184455e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #129
Elapsed time is 48.627755 seconds.
Combination #130
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.137901e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=6.362900e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=2.120474e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.564082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.735557e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067071e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=3.686404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009330e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 Warning: Failure at t=8.191985e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=1.108214e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #10 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel...
Combination #130
Elapsed time is 48.112089 seconds.
Combination #131
RUNNING ... #9 Warning: Failure at t=1.086932e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.386876e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.147948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.215596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.136363e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.283568e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=1.213728e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.108662e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 Warning: Failure at t=1.207935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.138919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.171600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #131
Elapsed time is 56.310989 seconds.
Combination #132
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.236005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.074125e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.200297e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #66 Warning: Failure at t=1.009414e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 Warning: Failure at t=1.382130e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at tim...
Combination #132
Elapsed time is 348.863791 seconds.
Combination #133
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.494096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.096678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.320820e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.720149e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=2.088694e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.678362e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #32 Warning: Failure at t=1.127741e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 Warning: Failure at t=1.839402e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.009236e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (li...
Combination #133
Elapsed time is 79.381254 seconds.
Combination #134
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.347226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.417581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.126160e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=2.306480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.306464e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=3.985212e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.470188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.064608e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUN...
Combination #134
Elapsed time is 72.796617 seconds.
Combination #135
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 Warning: Failure at t=1.307194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=2.392300e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.255624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.201140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.203610e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.399599e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 Warning: Failure at t=4.497540e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.245822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #89 RUNNING ... #98 Warning: Failure at t=1.737386e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #135
Elapsed time is 80.847905 seconds.
Combination #136
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.160197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.386624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.194586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.146170e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.511641e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.764093e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 Warning: Failure at t=1.141031e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.384465e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable ...
Combination #136
Elapsed time is 60.107770 seconds.
Combination #137
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.132374e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.251262e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.521756e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 Warning: Failure at t=1.136899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.261050e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.557313e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.270371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 Warning: Failure at t=1.180269e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning:...
Combination #137
Elapsed time is 75.017980 seconds.
Combination #138
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.489042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=6.540750e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.012147e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 Warning: Failure at t=3.685616e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.301005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.498068e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=8.790521e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=3.158658e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=2.389392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.207732e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=3.965218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 Warning: Failure at t=1.574089e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode...
Combination #138
Elapsed time is 72.083909 seconds.
Combination #139
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.642532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.153602e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #54 Warning: Failure at t=1.873773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.545612e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.131888e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.132347e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.345277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.507307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.366276e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.374677e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 Warning: Failure at t=1.675983e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure a...
Combination #139
Elapsed time is 48.044344 seconds.
Combination #140
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time...
Combination #140
Elapsed time is 38.930523 seconds.
Combination #141
RUNNING ... #9 Warning: Failure at t=1.119862e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.093868e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.475802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.055995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.217605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.081585e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.353604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.220105e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #141
Elapsed time is 35.532951 seconds.
Combination #142
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.042864e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 Warning: Failure at t=1.050915e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t....
Combination #142
Elapsed time is 38.132945 seconds.
Combination #143
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=3.386340e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.491280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=3.750333e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.148774e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 Warning: Failure at t=1.478910e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 Warning: Failure at t=2.152392e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 Warning: Failure at t=4.340338e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.176211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ....
Combination #143
Elapsed time is 372.017978 seconds.
Combination #144
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.271183e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.883569e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.306764e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.420625e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.116768e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.011561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smal...
Combination #144
Elapsed time is 69.227318 seconds.
Combination #145
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=3.376438e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #5 Warning: Failure at t=3.824411e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.828702e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.217658e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=2.815715e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=6.135258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=2.663217e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=2.912649e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #103 Warning: Failure at t=5.486895e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=3.748229e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.078516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #66 Warning: Failure at t=1.009593e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #42 Warning: Failure at t=3.184764e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 Warning: Failure at t=3.606064e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 Warning: Failure at t=2.601421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_...
Combination #145
Elapsed time is 92.935827 seconds.
Combination #146
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=4.055477e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.180824e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009431e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #420 RUNNING ... #419 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 Warning: Failure at t=1.039155e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #730 RUNNING ... #729 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_ge...
Combination #146
Elapsed time is 49.608346 seconds.
Combination #147
RUNNING ... #9 Warning: Failure at t=1.085332e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.063091e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.283864e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.156592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.248300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.295165e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.156198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.118986e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #147
Elapsed time is 34.268628 seconds.
Combination #148
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.356427e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=2.331791e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #6 RUNNING ... #5 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #34 RUNNING ... #33 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.863204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.508760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.478195e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=2.382445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #86 RUNNING ... #85 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 Warning: Failure at t=1.341254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #40 RUNNING ... #39 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #66 Warning: Failure at t=1.009250e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #10 RUNNING ... #32 Warning: Failure at t=1.127692e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_...
Combination #148
Elapsed time is 80.317770 seconds.
Combination #149
RUNNING ... #9 Warning: Failure at t=1.167859e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.094749e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.592293e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.093230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.341639e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.061340e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.799630e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.196050e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.135439e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.387037e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #149
Elapsed time is 76.442137 seconds.
Combination #150
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.522908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.185952e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.242006e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.193841e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=3.412102e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.176517e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.224823e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.227432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.166370e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.165478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67)...
Combination #150
Elapsed time is 49.896146 seconds.
Combination #151
RUNNING ... #9 Warning: Failure at t=1.247772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.120440e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.137925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.962413e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.075623e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.186788e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.217992e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.413885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.553659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure a...
Combination #151
Elapsed time is 79.832027 seconds.
Combination #152
RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.104825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.233108e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.531159e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.226160e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.143516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.127154e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.283647e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.364313e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.177132e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_gen...
Combination #152
Elapsed time is 66.182506 seconds.
Combination #153
RUNNING ... #9 Warning: Failure at t=1.152178e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.760659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.982899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.172292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.259683e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=3.102314e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.954331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.400699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.328977e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.332213e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the st...
Combination #153
Elapsed time is 39.982815 seconds.
Combination #154
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.149562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #79 RUNNING ... #78 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.510742e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070002e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #56 RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.184783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.531480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.918141e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_fu...
Combination #154
Elapsed time is 371.407205 seconds.
Combination #155
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.291724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.358699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.578038e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.248840e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.030595e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.176306e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=2.434415e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.170112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.354155e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances witho...
Combination #155
Elapsed time is 97.374849 seconds.
Combination #156
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.821882e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=3.976201e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.182418e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072570e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 Warning: Failure at t=5.022715e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=3.869207e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.693961e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.599891e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.055084e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009379e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 Warning: Failure at t=5.186593e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #49 Warning: Failure at t=3.361587e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 Warning: Failure at t=3.625333e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=8.847013e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #740 Warning: Failure at t=6.239677e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=3.287068e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #92 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=3.644622e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 Warning: Failure at t=5.418873e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 Warning: Failure at t=4.410693e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.563950e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_gene...
Combination #156
Elapsed time is 54.563326 seconds.
Combination #157
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.145228e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.265185e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.136903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.193712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.584288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.252514e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.115488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.161367e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.236919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to ...
Combination #157
Elapsed time is 141.723666 seconds.
Combination #158
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #887 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #168 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #804 RUNNING ... #803 RUNNING ... #802 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_gener...
Combination #158
Elapsed time is 40.390802 seconds.
Combination #159
RUNNING ... #9 Warning: Failure at t=1.120588e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.066225e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.397249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.248055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.147795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.122107e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.177600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.126145e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #159
Elapsed time is 38.789395 seconds.
Combination #160
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #2 RUNNING ... #1 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.306322e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076614e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009448e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #92 RUNNING ... #91 RUNNING ... #181 RUNNING ... #180 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.249284e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.256379e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #421 RUNNING ... #420 RUNNING ... #47 RUNNING ... #46 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #259 Warning: Failure at t=1.039093e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channe...
Combination #160
Elapsed time is 53.141439 seconds.
Combination #161
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=4.527313e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #32 Warning: Failure at t=1.171002e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072866e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=2.563447e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=2.862266e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.428750e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=3.795325e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.460600e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=3.787743e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=2.035934e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.183746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 Warning: Failure at t=2.442754e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.416924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #973 RUNNING ... #972 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>...
Combination #161
Elapsed time is 42.755304 seconds.
Combination #162
RUNNING ... #9 Warning: Failure at t=1.364821e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.457220e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.265806e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.109552e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.200990e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.578282e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.305535e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.094445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.253476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.033741e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without ...
Combination #162
Elapsed time is 50.419833 seconds.
Combination #163
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=3.367638e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.507533e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009468e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #96 Warning: Failure at t=4.198376e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.163608e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.218397e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #83 RUNNING ... #82 Warning: Failure at t=3.142051e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #340 RUNNING ... #339 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 Warning: Failure at t=1.754940e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.766851e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_func...
Combination #163
Elapsed time is 50.160215 seconds.
Combination #164
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #26 RUNNING ... #25 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.168965e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009374e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #74 RUNNING ... #73 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.037589e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the ...
Combination #164
Elapsed time is 43.435822 seconds.
Combination #165
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=1.819960e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.488389e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #55 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.170582e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.476131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #261 RUNNING ... #260 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #34 RUNNING ... #33 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 Warning: Failure at t=1.202375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #180 RUNNING ... #179 Warning: Failure at t=1.668241e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/ch...
Combination #165
Elapsed time is 350.550917 seconds.
Combination #166
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.310425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 RUNNING ... #25 Warning: Failure at t=1.271562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=6.058094e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.117852e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.743833e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=2.060637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063038e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.895882e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integr...
Combination #166
Elapsed time is 86.466044 seconds.
Combination #167
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.060760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #62 RUNNING ... #71 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 Warning: Failure at t=2.595424e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #9 RUNNING ... #8 Warning: Failure at t=6.297445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 RUNNING ... #12 RUNNING ... #26 RUNNING ... #32 RUNNING ... #61 RUNNING ... #60 RUNNING ... #70 Warning: Failure at t=4.362198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.662036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.204059e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #103 RUNNING ... #7 RUNNING ... #25 Warning: Failure at t=1.252175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.115438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.838051e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 RUNNING ... #53 RUNNING ... #52 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #69 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #102 RUNNING ... #6 RUNNING ... #11 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.061814e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning...
Combination #167
Elapsed time is 10358.314690 seconds.
Combination #168
RUNNING ... #9 Warning: Failure at t=1.113180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.272015e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.799167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.329029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.254719e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.427256e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.465573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.195177e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.219654e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.363461e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration to...
Combination #168
Elapsed time is 40.576891 seconds.
Combination #169
RUNNING ... #9 Warning: Failure at t=1.098247e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.077869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.427863e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.209429e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.236759e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.203743e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.180105e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.058372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.360324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #169
Elapsed time is 33.604248 seconds.
Combination #170
RUNNING ... #9 Warning: Failure at t=1.059142e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.055994e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.222151e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.108646e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.529369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.127756e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.059127e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.181496e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.169593e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.27373...
Combination #170
Elapsed time is 34.253638 seconds.
Combination #171
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #54 RUNNING ... #72 RUNNING ... #71 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.420363e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.280886e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.950755e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.336717e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.875578e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.117772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=1.009215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallel...
Combination #171
Elapsed time is 99.624607 seconds.
Combination #172
RUNNING ... #9 Warning: Failure at t=1.066488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.073193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.257999e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.166911e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.105917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.079748e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.206098e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.169588e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #172
Elapsed time is 43.848105 seconds.
Combination #173
RUNNING ... #9 Warning: Failure at t=1.143430e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.087875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.641365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.274710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.920349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.229679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.067000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.661365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.237840e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.036710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the ste...
Combination #173
Elapsed time is 39.443820 seconds.
Combination #174
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.979580e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.441827e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.291960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.898854e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=4.439507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.014676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.406332e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.120915e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #47 Warning: Failure at t=1.009220e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. ...
Combination #174
Elapsed time is 77.870193 seconds.
Combination #175
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=8.203218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.420087e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.304032e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=2.107888e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.405683e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.920434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.120681e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #48 Warning: Failure at t=1.009257e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) I...
Combination #175
Elapsed time is 103.769352 seconds.
Combination #176
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.605108e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.177551e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.076076e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009411e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.039528e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ...
Combination #176
Elapsed time is 351.196457 seconds.
Combination #177
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.085808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.281581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.312397e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.908974e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.119572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #51 Warning: Failure at t=1.803620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.364296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063206e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Fail...
Combination #177
Elapsed time is 70.567195 seconds.
Combination #178
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.262870e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 Warning: Failure at t=2.308223e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.897288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.072901e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.366028e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.550824e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.411022e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #14 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel...
Combination #178
Elapsed time is 75.724603 seconds.
Combination #179
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.111290e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 Warning: Failure at t=4.170651e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.604669e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.407480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.409680e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.908345e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=2.764653e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 Warning: Failure at t=3.185995e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=2.749123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.009335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet i...
Combination #179
Elapsed time is 63.532982 seconds.
Combination #180
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 Warning: Failure at t=1.044396e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In pa...
Combination #180
Elapsed time is 38.273165 seconds.
Combination #181
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.529776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.234094e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.586977e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.497842e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #96 Warning: Failure at t=2.061188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.109349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.174020e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400...
Combination #181
Elapsed time is 58.317821 seconds.
Combination #182
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 RUNNING ... #3 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #10 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=2.294163e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #47 RUNNING ... #46 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #894 RUNNING ... #893 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #178 RUNNING ... #177 RUNNING ... #176 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #335 Warning: Failure at t=3.722107e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #175 RUNNING ... #174 RUNNING ... #253 Warning: Failure at t=1.107268e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #252 RUNNING ... #251 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 Warning: Failure at t=5.053975e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #574 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 Warning: Failure at t=4.731206e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #407 RUNNING ... #406 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #878 RUNNING ... #877 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 RUNNING ... #320 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #633 RUNNING ... #632 RUNNING ... #631 RUNNING ... #630 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #793 RUNNING ... #948 RUNNING ... #947 RUNNING ... #946 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #182
Elapsed time is 60.045881 seconds.
Combination #183
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.291212e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 Warning: Failure at t=2.529094e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.120015e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.820247e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=2.214172e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #79 Warning: Failure at t=2.272566e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #105 Warning: Failure at t=1.280970e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.349507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #6 RUNNING ... #12 Warning: Failure at t=1.805217e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #183
Elapsed time is 96.255331 seconds.
Combination #184
RUNNING ... #9 Warning: Failure at t=1.297332e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=4.414526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.620404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.852367e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.258960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.437773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=4.630652e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.607174e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.705420e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.553025e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.308952e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.584393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tol...
Combination #184
Elapsed time is 41.910569 seconds.
Combination #185
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #2 RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #177 RUNNING ... #176 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=5.066860e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #574 RUNNING ... #573 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #795 RUNNING ... #794 RUNNING ... #793 RUNNING ... #792 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.750452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.450452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.750452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.450452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.850452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.550452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.850452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.550452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.950452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.650452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.950452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.350452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.650452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.350452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #872 RUNNING ... #871 Warning: Failure at t=9.317372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #953 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67)...
Combination #185
Elapsed time is 47.563258 seconds.
Combination #186
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.433676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.199687e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.515152e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.309829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.492633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.236068e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=2.529864e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 Warning: Failure at t=1.592931e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.007553e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.281717e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step ...
Combination #186
Elapsed time is 72.448197 seconds.
Combination #187
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.931123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 Warning: Failure at t=3.870606e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.788790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #76 RUNNING ... #75 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #10 Warning: Failure at t=1.250690e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.751125e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #51 Warning: Failure at t=1.709364e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.238244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=5.039995e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #74 RUNNING ... #73 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=2.754309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.804754e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #187
Elapsed time is 409.458443 seconds.
Combination #188
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.094652e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.533339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=2.452055e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009934e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 Warning: Failure at t=1.583456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.041405e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654...
Combination #188
Elapsed time is 41.201875 seconds.
Combination #189
RUNNING ... #9 Warning: Failure at t=1.068167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.045949e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.205953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.120300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.438035e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.047246e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.177793e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.150186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.27373...
Combination #189
Elapsed time is 45.710402 seconds.
Combination #190
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.846880e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=2.003931e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=4.883259e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=2.555326e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #33 Warning: Failure at t=1.429309e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.155679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=2.325433e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=1.917296e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #90 RUNNING ... #89 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.512700e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.113755e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=6.600007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=4.031643e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=4.052305e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.547546e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #1 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #95 RUNNING ... #94 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=3.058433e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #82 RUNNING ... #93 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 Warning: Failure at t=3.708993e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=3.026409e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #184 Warning: Failure at t=4.805714e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #183 Warning: Failure at t=2.395682e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.170627e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at ...
Combination #190
Elapsed time is 55.391804 seconds.
Combination #191
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 Warning: Failure at t=2.125455e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.806448e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=4.465892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=2.890418e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.326237e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.174955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.250564e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009417e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.617818e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=3.441049e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=4.296192e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=9.161412e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #92 RUNNING ... #91 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=3.070002e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #191
Elapsed time is 67.580869 seconds.
Combination #192
RUNNING ... #9 Warning: Failure at t=1.098352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.186313e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.446888e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.678907e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.270648e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.299096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.161939e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.311473e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.936809e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.757189e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration to...
Combination #192
Elapsed time is 48.166272 seconds.
Combination #193
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.191991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.323204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 Warning: Failure at t=1.178900e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.137912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.409386e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.365658e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.487403e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.080524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.382654e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Fail...
Combination #193
Elapsed time is 41.164526 seconds.
Combination #194
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=7.677906e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=3.561424e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=9.632134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.499431e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.093239e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=5.884626e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=1.604307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.794453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.357988e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 Warning: Failure at t=2.543613e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=2.118134e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #2 RUNNING ... #1 RUNNING ... #22 Warning: Failure at t=3.598175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=2.697438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing t...
Combination #194
Elapsed time is 54.613607 seconds.
Combination #195
RUNNING ... #9 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.366281e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.166948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=3.215438e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=2.694964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=2.816133e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.910341e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.444376e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.127695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009276e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.832452e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.341453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=2.600993e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=2.836479e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warni...
Combination #195
Elapsed time is 81.845883 seconds.
Combination #196
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.223947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.413559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.342989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=6.815187e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.287866e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=5.823307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.330664e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.184355e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.812464e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=3.287292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.256801e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to m...
Combination #196
Elapsed time is 110.221995 seconds.
Combination #197
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.188843e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.760804e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.409020e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.250865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #59 RUNNING ... #58 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.274722e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.112027e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.059706e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>m...
Combination #197
Elapsed time is 96.030051 seconds.
Combination #198
RUNNING ... #9 Warning: Failure at t=1.132829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.217421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.665226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.515892e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.315561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.339178e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.321478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.583186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.466631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.157772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.152485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #198
Elapsed time is 350.766865 seconds.
Combination #199
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.564620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.264620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.564620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.264620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #239 RUNNING ... #238 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #474 RUNNING ... #473 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #631 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #794 RUNNING ... #793 RUNNING ... #792 RUNNING ... #791 RUNNING ... #790 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #948 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t....
Combination #199
Elapsed time is 40.615017 seconds.
Combination #200
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=4.174129e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #25 Warning: Failure at t=1.583919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=6.444141e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 Warning: Failure at t=3.785553e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.913803e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.407708e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.968788e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=8.691505e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=3.921626e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #61 RUNNING ... #60 RUNNING ... #67 RUNNING ... #66 RUNNING ... #86 Warning: Failure at t=2.567130e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #105 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=4.546901e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=2.458914e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=5.092227e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=3.384216e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 Warning: Failure at t=4.255052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=2.256202e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #10 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=3.690728e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #19 Warning: Failure at t=4.364842e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.009380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. >...
Combination #200
Elapsed time is 108.607650 seconds.
Combination #201
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.184200e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.329362e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.213620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=2.809372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=2.106686e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=2.542699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.280641e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.165392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=3.002193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.241498e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to m...
Combination #201
Elapsed time is 149.514130 seconds.
Combination #202
RUNNING ... #9 Warning: Failure at t=1.167616e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.706855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.601651e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.229999e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.299997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=5.147852e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.911621e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.815168e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.410990e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.711173e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.427660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tol...
Combination #202
Elapsed time is 47.457616 seconds.
Combination #203
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 Warning: Failure at t=3.785911e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.377701e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 RUNNING ... #87 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #21 Warning: Failure at t=1.908278e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #103 Warning: Failure at t=2.699831e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #102 RUNNING ... #101 RUNNING ... #7 RUNNING ... #503 Warning: Failure at t=2.131188e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 Warning: Failure at t=1.598994e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.941499e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #32 Warning: Failure at t=1.143388e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #100 RUNNING ... #6 RUNNING ... #5 RUNNING ... #20 RUNNING ... #19 RUNNING ... #502 RUNNING ... #501 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #83 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=3.719329e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.475066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.153292e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.456779e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #28 Warning: Failure at t=1.068831e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01...
Combination #203
Elapsed time is 65.505541 seconds.
Combination #204
RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.270709e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.393215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.508174e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.704104e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #87 Warning: Failure at t=1.485597e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.670082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.421195e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.798586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general ...
Combination #204
Elapsed time is 50.153591 seconds.
Combination #205
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.043565e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 Warning: Failure at t=1.174893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #205
Elapsed time is 39.470831 seconds.
Combination #206
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.655494e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.157106e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.463184e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070745e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=1.227584e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.168275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.185756e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #338 RUNNING ... #337 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: F...
Combination #206
Elapsed time is 48.642046 seconds.
Combination #207
RUNNING ... #9 Warning: Failure at t=1.066561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.088450e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.303124e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.146471e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.155684e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.079637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.076317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.213181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.126832e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #207
Elapsed time is 39.170734 seconds.
Combination #208
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #81 RUNNING ... #80 Warning: Failure at t=5.059661e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=1.880422e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.175507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #51 Warning: Failure at t=3.917367e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 Warning: Failure at t=4.275836e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #28 Warning: Failure at t=1.073447e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=4.576163e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #96 Warning: Failure at t=4.355947e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=3.058528e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #82 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=3.413348e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 Warning: Failure at t=2.320434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 Warning: Failure at t=4.298997e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #738 RUNNING ... #737 RUNNING ... #819 RUNNING ... #818 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 Warning: Failure at t=2.257102e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=1.181807e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowe...
Combination #208
Elapsed time is 64.693247 seconds.
Combination #209
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.249393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.327847e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.250687e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.775733e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.203686e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.611451e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.197112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 Warning: Failure at t=1.617221e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.211352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #209
Elapsed time is 366.764277 seconds.
Combination #210
RUNNING ... #9 Warning: Failure at t=1.059401e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.251353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.111327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.071432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.065349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.181523e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.106679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.096022e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.149091e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.095432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without ...
Combination #210
Elapsed time is 51.358248 seconds.
Combination #211
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=2.265782e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.782825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.470408e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=3.237875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.149404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071538e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In...
Combination #211
Elapsed time is 50.605626 seconds.
Combination #212
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.956543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.248854e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=2.932617e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.754675e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.094496e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.713772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.669421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #86 Warning: Failure at t=1.286655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e...
Combination #212
Elapsed time is 83.376113 seconds.
Combination #213
RUNNING ... #9 Warning: Failure at t=1.189892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.852400e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.912801e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.227924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.282964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.755874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.658923e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.209296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.859546e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.746304e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #213
Elapsed time is 37.322096 seconds.
Combination #214
RUNNING ... #18 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=3.128922e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 Warning: Failure at t=3.753089e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.098409e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.784472e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 Warning: Failure at t=1.657928e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 Warning: Failure at t=2.255055e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 Warning: Failure at t=2.397762e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=4.461931e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #14 Warning: Failure at t=2.830152e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 Warning: Failure at t=2.744570e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.472356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.488480e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #41 Warning: Failure at t=4.289038e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=6.946153e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=5.486431e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 Warning: Failure at t=2.489554e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #68 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 RUNNING ... #105 Warning: Failure at t=1.413507e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=3.392777e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #59 RUNNING ... #58 Warning: Failure at t=2.690518e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 Warning: Failure at t=3.444069e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=3.805224e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.569757e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.420586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #104 RUNNING ... #103 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.927915e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #32 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 Warning: Failure at t=1.642194e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=2.461774e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #4 Warning: Failure at t=1.505789e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value ...
Combination #214
Elapsed time is 83.829395 seconds.
Combination #215
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #81 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.649678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.220172e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #1 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.080376e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #66 Warning: Failure at t=1.009479e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #894 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #261 RUNNING ... #260 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #259 Warning: Failure at t=1.040905e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #420 RUNNING ... #419 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #730 RUNNING ... #729 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813...
Combination #215
Elapsed time is 54.492404 seconds.
Combination #216
RUNNING ... #9 Warning: Failure at t=1.067978e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.270900e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.123716e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.568818e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.145217e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.145329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.089295e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.074422e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.194589e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value ...
Combination #216
Elapsed time is 44.098237 seconds.
Combination #217
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.691659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.322037e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=6.379757e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.283432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.126434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=2.263689e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.886425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 Warning: Failure at t=2.579472e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=1.009239e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=7.893503e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #101 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without ...
Combination #217
Elapsed time is 67.878803 seconds.
Combination #218
RUNNING ... #9 Warning: Failure at t=1.633669e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #26 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.137612e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=6.055161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.745298e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=3.026770e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=2.054090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=5.838524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 Warning: Failure at t=1.374014e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=5.840954e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067510e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 Warning: Failure at t=2.805012e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=2.806076e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.941628e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2....
Combination #218
Elapsed time is 70.470057 seconds.
Combination #219
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.153705e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.241042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #81 Warning: Failure at t=1.164908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.970614e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.364949e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=8.010261e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.533990e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 Warning: Failure at t=1.118979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.273155e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800...
Combination #219
Elapsed time is 65.634936 seconds.
Combination #220
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.179823e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.346045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.388228e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.665081e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.386487e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=2.032605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.987936e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.306872e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.185324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=1.607035e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: ...
Combination #220
Elapsed time is 355.333067 seconds.
Combination #221
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=3.382703e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 Warning: Failure at t=2.745881e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=2.262857e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=3.855791e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.455543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=1.569891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=3.182053e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=2.399640e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=3.622882e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=4.446149e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=3.477469e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #187 RUNNING ... #186 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=3.973258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=2.747568e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.135486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 Warning: Failure at t=3.465823e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_gener...
Combination #221
Elapsed time is 82.234825 seconds.
Combination #222
RUNNING ... #9 Warning: Failure at t=1.039066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.036732e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.162726e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.553764e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.088696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.063842e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.052582e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.135015e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.120167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.1368...
Combination #222
Elapsed time is 34.315919 seconds.
Combination #223
RUNNING ... #9 Warning: Failure at t=1.047320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.036485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.168585e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.087943e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.170609e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.168013e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.100426e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.068931e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #223
Elapsed time is 31.478375 seconds.
Combination #224
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #32 Warning: Failure at t=1.151254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009337e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.152978e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.068434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=4.753296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #1056 Warning: Failure at t=1.629963e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-1...
Combination #224
Elapsed time is 38.765864 seconds.
Combination #225
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 RUNNING ... #45 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #81 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.509102e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #66 Warning: Failure at t=1.009387e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #94 RUNNING ... #93 RUNNING ... #1 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.155122e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072257e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #73 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.796899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #180 RUNNING ... #179 Warning: Failure at t=1.807934e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01....
Combination #225
Elapsed time is 53.712086 seconds.
Combination #226
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.536342e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.155353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.649423e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.193994e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071146e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 Warning: Failure at t=1.231658e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step si...
Combination #226
Elapsed time is 36.484645 seconds.
Combination #227
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.227886e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.253639e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.189449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.422898e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.068947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.188270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.283438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.353540e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.197119e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 7...
Combination #227
Elapsed time is 69.028990 seconds.
Combination #228
RUNNING ... #9 Warning: Failure at t=1.067155e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.076925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.274778e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.125190e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.568286e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.150624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.117417e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.113567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.217318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #228
Elapsed time is 37.904235 seconds.
Combination #229
RUNNING ... #9 Warning: Failure at t=1.125120e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.067560e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.580736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.844113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.226316e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.051847e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.643135e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.192493e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.131273e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.290219e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #229
Elapsed time is 39.877636 seconds.
Combination #230
RUNNING ... #9 Warning: Failure at t=1.406665e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.402602e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.880318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.179685e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.319547e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.000991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.408898e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.244597e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=3.028128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.266445e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.414794e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.220300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=5.804904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without...
Combination #230
Elapsed time is 44.018242 seconds.
Combination #231
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.140469e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.122635e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067023e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=3.300542e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=3.003105e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.577413e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=6.274724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 Warning: Failure at t=1.527048e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (lin...
Combination #231
Elapsed time is 373.066512 seconds.
Combination #232
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.464049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.358619e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=3.518912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.724855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=2.611510e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.128253e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.065260e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet ...
Combination #232
Elapsed time is 100.092189 seconds.
Combination #233
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.575108e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.361117e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.874950e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.544749e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.193551e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.100618e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.425495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000...
Combination #233
Elapsed time is 85.830435 seconds.
Combination #234
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.325661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.208708e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.139058e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.306937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.304402e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.144635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.223307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.150451e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.544826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.427610e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (...
Combination #234
Elapsed time is 51.129248 seconds.
Combination #235
RUNNING ... #9 Warning: Failure at t=1.219064e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.935210e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.470976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.149611e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.204844e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=2.096318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.622613e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.290695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.630378e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.270256e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the st...
Combination #235
Elapsed time is 43.034135 seconds.
Combination #236
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.187467e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #5 Warning: Failure at t=3.979319e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.898986e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=2.150979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.133910e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.146418e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=2.759072e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 Warning: Failure at t=1.040093e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #85 Warning: Failure at t=5.143079e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 RUNNING ... #83 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 Warning: Failure at t=2.115620e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=1.009356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.918331e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1056 Warning: Failure at t=1.519422e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e...
Combination #236
Elapsed time is 67.708440 seconds.
Combination #237
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.179719e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.362047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.079215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.242236e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.434835e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.260771e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 Warning: Failure at t=1.685220e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.150170e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.858385e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.136560e+01. Unable to meet integrati...
Combination #237
Elapsed time is 109.363149 seconds.
Combination #238
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.238464e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.581074e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.527553e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.817690e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.111883e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.061027e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 Warning: Failure at t=3.457713e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 Warning: Failure at t=3.711204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.166758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #92 Warning: Failure at t=2.040368e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #91 Warning: Failure at t=5.197425e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.367342e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_g...
Combination #238
Elapsed time is 65.762752 seconds.
Combination #239
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.143293e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=3.180309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.210995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 Warning: Failure at t=3.015621e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.312802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=2.740720e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.312194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #63 Warning: Failure at t=6.067193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.006202e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.933092e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+...
Combination #239
Elapsed time is 2250.776663 seconds.
Combination #240
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #33 Warning: Failure at t=2.799828e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.237225e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.074912e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=4.512207e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #93 RUNNING ... #92 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.190707e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #1056 Warning: Failure at t=1.561825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.383354e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #47 RUNNING ... #46 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038446e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_...
Combination #240
Elapsed time is 55.683770 seconds.
Combination #241
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.152680e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.111621e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.179745e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.154591e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.102819e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.131533e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.147210e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.100800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.098960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.164800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #7 Warning: Failure at t=1.225309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.119192e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/cha...
Combination #241
Elapsed time is 53.642191 seconds.
Combination #242
RUNNING ... #9 Warning: Failure at t=1.049338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.188823e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.090037e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.059598e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.053928e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.141677e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.084748e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.088964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.115951e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.063524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tol...
Combination #242
Elapsed time is 362.401536 seconds.
Combination #243
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.250604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.473316e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.500884e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=2.571692e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=3.146331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=3.626226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.788018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=4.230526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 Warning: Failure at t=1.811855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.363225e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_gen...
Combination #243
Elapsed time is 53.207788 seconds.
Combination #244
RUNNING ... #9 Warning: Failure at t=1.059131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.053589e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.326839e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.126909e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.207259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.167264e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.140425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.072947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.233519e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #244
Elapsed time is 37.391249 seconds.
Combination #245
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.273281e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.406049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=1.925669e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.734583e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 Warning: Failure at t=2.922997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 Warning: Failure at t=2.787423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=7.651780e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.337441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=2.403011e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.221720e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In o...
Combination #245
Elapsed time is 55.631082 seconds.
Combination #246
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.556605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 Warning: Failure at t=1.163078e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073008e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #898 RUNNING ... #92 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #100 RUNNING ... #181 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.195903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #74 RUNNING ... #73 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 Warning: Failure at t=1.187656e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the ...
Combination #246
Elapsed time is 69.300221 seconds.
Combination #247
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009400e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.501907e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.151825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.739626e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 Warning: Failure at t=1.712405e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without red...
Combination #247
Elapsed time is 38.739640 seconds.
Combination #248
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.192535e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 Warning: Failure at t=1.119933e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.404478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.928114e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.830389e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.373131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.161403e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.603970e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.343356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 Warning: Failure at t=1.740618e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.378953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.241452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integrati...
Combination #248
Elapsed time is 53.274845 seconds.
Combination #249
RUNNING ... #9 Warning: Failure at t=1.110662e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.442478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.192287e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=7.134022e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.153059e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.124406e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.287795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.216345e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.282526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.193039e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #249
Elapsed time is 46.255624 seconds.
Combination #250
RUNNING ... #9 Warning: Failure at t=1.166703e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.425620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.765406e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.130258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.241592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.171502e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.503489e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.579120e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.158784e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=2.934130e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #250
Elapsed time is 71.798004 seconds.
Combination #251
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.230334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.541838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #4 Warning: Failure at t=1.383087e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.526175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.109825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=1.473485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.769409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In paralle...
Combination #251
Elapsed time is 64.574471 seconds.
Combination #252
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.188381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.296875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.213277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.219319e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.157641e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.467591e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.257183e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=2.851710e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.618663e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.082786e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 Warning: Failure at t=1.093712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=4.708822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tole...
Combination #252
Elapsed time is 157.831243 seconds.
Combination #253
RUNNING ... #9 Warning: Failure at t=1.167156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.084084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.700841e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.585030e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.169204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.054036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.078924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.359898e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.155223e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.440224e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the st...
Combination #253
Elapsed time is 363.177924 seconds.
Combination #254
RUNNING ... #9 Warning: Failure at t=1.050393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.040005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.226222e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.100357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.281865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.683189e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.120963e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.043676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.178648e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #254
Elapsed time is 33.504981 seconds.
Combination #255
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #893 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #804 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time...
Combination #255
Elapsed time is 38.724155 seconds.
Combination #256
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.256145e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.655496e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.552605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=5.407124e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.137286e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.066682e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=4.731637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009313e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #10 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #74 RUNNING ... #73 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.140731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line ...
Combination #256
Elapsed time is 52.236170 seconds.
Combination #257
RUNNING ... #9 Warning: Failure at t=1.150338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.081202e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.843834e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.200225e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.062431e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.975802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.232573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.156948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.397962e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.110173e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.338846e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.268488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to mee...
Combination #257
Elapsed time is 49.598343 seconds.
Combination #258
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.087539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.043363e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 Warning: Failure at t=1.049690e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.19063...
Combination #258
Elapsed time is 35.742409 seconds.
Combination #259
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 Warning: Failure at t=4.538300e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 Warning: Failure at t=1.706512e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.524321e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=3.471109e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.156274e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070343e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 Warning: Failure at t=1.009338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 Warning: Failure at t=2.190201e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.168798e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=4.553220e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #73 RUNNING ... #1056 Warning: Failure at t=1.522883e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8....
Combination #259
Elapsed time is 45.361459 seconds.
Combination #260
RUNNING ... #9 Warning: Failure at t=1.580211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.527330e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.960748e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.844512e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.743971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.338253e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=2.183852e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 Warning: Failure at t=2.323372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.251254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.697800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at...
Combination #260
Elapsed time is 60.414176 seconds.
Combination #261
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.066929e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 Warning: Failure at t=5.185238e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=4.192360e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=1.998023e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.458113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.581782e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=2.996311e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #96 Warning: Failure at t=3.116645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=3.462021e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #32 Warning: Failure at t=1.135869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #66 Warning: Failure at t=1.009311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=2.164670e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 Warning: Failure at t=4.059648e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 RUNNING ... #83 RUNNING ... #187 RUNNING ... #186 RUNNING ... #10 Warning: Failure at t=3.811303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #1056 Warning: Failure at t=5.488443e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 7...
Combination #261
Elapsed time is 88.352296 seconds.
Combination #262
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.170220e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.072053e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.169409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #66 Warning: Failure at t=1.009471e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 Warning: Failure at t=2.699085e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=1.210248e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #740 Warning: Failure at t=2.691026e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #181 Warning: Failure at t=1.263562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In r...
Combination #262
Elapsed time is 37.712046 seconds.
Combination #263
RUNNING ... #9 Warning: Failure at t=1.278805e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.240403e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.176971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.351750e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.424703e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.772830e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.573089e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.332394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.491404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.280277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.574319e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #263
Elapsed time is 39.094533 seconds.
Combination #264
RUNNING ... #9 Warning: Failure at t=1.117197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.902522e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.295996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.242314e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.226088e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.500962e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.776180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.493007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.286373e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.251385e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.199771e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without ...
Combination #264
Elapsed time is 357.911011 seconds.
Combination #265
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.350282e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 Warning: Failure at t=2.271379e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009301e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.440731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.406171e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.362890e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.126929e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.064779e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (lin...
Combination #265
Elapsed time is 77.305178 seconds.
Combination #266
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=3.733162e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=9.220734e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.954472e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 Warning: Failure at t=2.212456e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 Warning: Failure at t=2.193443e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=2.131324e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #89 Warning: Failure at t=4.196711e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=3.293859e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.373814e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.878673e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #88 RUNNING ... #105 Warning: Failure at t=2.322772e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.784170e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=3.164083e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=3.558181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #57 RUNNING ... #69 RUNNING ... #77 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=3.246260e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=5.125262e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #4 Warning: Failure at t=1.502693e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.178130e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #2 RUNNING ... #1 RUNNING ... #10 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #56 Warning: Failure at t=2.106657e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14...
Combination #266
Elapsed time is 91.963664 seconds.
Combination #267
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.291705e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.393019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.167844e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.277409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.648555e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.464869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.220635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.256777e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.602709e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+...
Combination #267
Elapsed time is 59.395288 seconds.
Combination #268
RUNNING ... #9 Warning: Failure at t=1.147047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.087325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.305472e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.476787e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.280260e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.242560e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.078186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.177072e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.336674e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.345130e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.135371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet...
Combination #268
Elapsed time is 42.258786 seconds.
Combination #269
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.443505e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.833688e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.287295e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.447052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=2.022809e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=2.057274e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.519437e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #80 Warning: Failure at t=2.398346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. >...
Combination #269
Elapsed time is 160.987115 seconds.
Combination #270
RUNNING ... #9 Warning: Failure at t=1.076323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.071042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.307492e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.141114e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.393296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.901695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.168688e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.119001e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.072972e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.239679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #270
Elapsed time is 34.322865 seconds.
Combination #271
RUNNING ... #9 Warning: Failure at t=1.153958e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.083193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.002652e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.349701e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.269604e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.221449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.229762e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.064057e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.305787e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.177569e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #271
Elapsed time is 42.398525 seconds.
Combination #272
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #76 RUNNING ... #75 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #105 RUNNING ... #104 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.517673e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.153937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009376e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=2.815125e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=2.520302e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.163423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #28 Warning: Failure at t=1.070394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #46 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 Warning: Failure at t=1.465770e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integra...
Combination #272
Elapsed time is 46.178369 seconds.
Combination #273
RUNNING ... #9 Warning: Failure at t=1.073196e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.053263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.259516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 Warning: Failure at t=1.053429e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.213734e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.169793e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.067508e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.084076e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #273
Elapsed time is 54.812685 seconds.
Combination #274
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.142875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=4.356387e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.760659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.269181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.271672e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #51 Warning: Failure at t=1.539674e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.373451e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.006029e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 Warning: Failure at t=2.605274e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.120968e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #274
Elapsed time is 65.525245 seconds.
Combination #275
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.621451e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009379e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.172826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #740 RUNNING ... #739 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073313e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=1.306123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #180 RUNNING ... #179 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #47 RUNNING ... #46 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.197721e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest ...
Combination #275
Elapsed time is 365.159628 seconds.
Combination #276
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.118344e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.143467e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.159068e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.165463e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.110481e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.178673e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.127359e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.089266e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 Warning: Failure at t=1...
Combination #276
Elapsed time is 72.066641 seconds.
Combination #277
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.307127e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.515598e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.323460e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.137325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.330078e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 Warning: Failure at t=1.509039e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=1.333519e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.655311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #87 Warning: Failure at t=1.263696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without re...
Combination #277
Elapsed time is 60.295300 seconds.
Combination #278
RUNNING ... #9 Warning: Failure at t=1.191608e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.915237e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.817157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.285250e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.317409e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.924585e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.434135e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.226298e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.583143e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.869678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #278
Elapsed time is 40.729501 seconds.
Combination #279
RUNNING ... #9 Warning: Failure at t=1.110587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.358463e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.277839e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.278445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.237761e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.372527e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.274872e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.897105e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.285571e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.218711e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without...
Combination #279
Elapsed time is 100.294129 seconds.
Combination #280
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #1029 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #157 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1...
Combination #280
Elapsed time is 36.846044 seconds.
Combination #281
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=9.474536e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 RUNNING ... #14 RUNNING ... #44 RUNNING ... #43 RUNNING ... #51 Warning: Failure at t=2.056847e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #86 Warning: Failure at t=1.405035e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.309933e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.351403e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.122208e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.009279e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063607e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunctio...
Combination #281
Elapsed time is 94.104718 seconds.
Combination #282
RUNNING ... #9 Warning: Failure at t=1.060341e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.054280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.236493e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.116466e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.180019e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.156335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.125089e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.064506e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.188489e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #282
Elapsed time is 33.427656 seconds.
Combination #283
RUNNING ... #9 Warning: Failure at t=1.158312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.181156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.346226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.407622e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.515729e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.881905e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.937152e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.558556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.797852e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.301733e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.298037e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 Warning: Failure at t=1.389034e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.654893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.957198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) War...
Combination #283
Elapsed time is 40.570427 seconds.
Combination #284
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #63 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.949178e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.567273e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.599055e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 Warning: Failure at t=2.045789e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=4.249207e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=3.193580e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=3.130419e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #34 RUNNING ... #33 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #70 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #25 Warning: Failure at t=1.289609e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.123423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #39 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 Warning: Failure at t=4.823787e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.248962e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #96 Warning: Failure at t=2.203903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.908062e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.158769e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.637648e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.945669e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 Warning: Failure at t=1.897287e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4....
Combination #284
Elapsed time is 95.533872 seconds.
Combination #285
RUNNING ... #9 Warning: Failure at t=1.071503e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.068922e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.284140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.070975e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.223590e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.164329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.138318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.070622e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.079827e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #285
Elapsed time is 51.214813 seconds.
Combination #286
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=2.528323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.475158e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.158834e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.154356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=2.249039e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009360e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #892 RUNNING ... #92 RUNNING ... #91 Warning: Failure at t=2.811607e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #183 Warning: Failure at t=3.137694e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.036929e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (l...
Combination #286
Elapsed time is 359.320131 seconds.
Combination #287
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.267708e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.369097e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.181351e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.327241e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.126489e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=2.035921e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=4.945439e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #84 Warning: Failure at t=3.838098e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #28 Warning: Failure at t=1.064619e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warn...
Combination #287
Elapsed time is 75.976959 seconds.
Combination #288
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=9.596637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #14 RUNNING ... #51 Warning: Failure at t=5.638903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #87 RUNNING ... #86 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.462444e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.360366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 Warning: Failure at t=1.566574e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=9.227551e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 Warning: Failure at t=2.761185e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 Warning: Failure at t=3.023480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.128069e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.009263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. ...
Combination #288
Elapsed time is 170.353650 seconds.
Combination #289
RUNNING ... #9 Warning: Failure at t=1.384514e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.516252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.983812e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.423807e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.498468e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=4.745341e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.691799e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.755872e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.584091e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=3.287776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.583025e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tol...
Combination #289
Elapsed time is 50.533934 seconds.
Combination #290
RUNNING ... #9 Warning: Failure at t=1.173645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.254600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.349869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.161619e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.283547e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.172773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.214055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.119661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.125323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #290
Elapsed time is 51.415330 seconds.
Combination #291
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #157 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time...
Combination #291
Elapsed time is 47.381841 seconds.
Combination #292
RUNNING ... #9 Warning: Failure at t=1.094047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.057008e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.383850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.431558e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.223432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.050112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.311305e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.194136e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #292
Elapsed time is 42.288250 seconds.
Combination #293
RUNNING ... #9 RUNNING ... #8 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.214562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.195179e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 Warning: Failure at t=1.298882e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.204766e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.202999e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 Warning: Failure at t=1.238837e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.172224e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.042616e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_f...
Combination #293
Elapsed time is 72.685194 seconds.
Combination #294
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 Warning: Failure at t=4.587936e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.482445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #34 Warning: Failure at t=3.264325e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 Warning: Failure at t=5.800151e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009282e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 Warning: Failure at t=3.858536e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.566176e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 Warning: Failure at t=3.215187e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 Warning: Failure at t=1.786712e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.454769e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.133714e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 Warning: Failure at t=3.583733e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #30 Warning: Failure at t=2.670942e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=2.184963e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=2.857640e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=5.271236e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=7.335592e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunctio...
Combination #294
Elapsed time is 77.565454 seconds.
Combination #295
RUNNING ... #9 Warning: Failure at t=1.207501e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.113049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.850991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.068753e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.555865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.261204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.921153e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.262246e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.658423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=1.346702e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.153944e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration to...
Combination #295
Elapsed time is 54.581517 seconds.
Combination #296
RUNNING ... #9 Warning: Failure at t=1.115673e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.326340e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.496903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.724616e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.236626e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 Warning: Failure at t=1.170970e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.363372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.213857e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.855633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.181482e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without...
Combination #296
Elapsed time is 53.570295 seconds.
Combination #297
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.245545e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.674441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #79 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.415520e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.112670e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.801607e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #86 Warning: Failure at t=3.063826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.194572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.707371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #46 RUNNING ... #74 RUNNING ... #73 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > I...
Combination #297
Elapsed time is 391.676609 seconds.
Combination #298
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.663692e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.131869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.130661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.127907e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.147917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.114192e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.602068e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.165606e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the ...
Combination #298
Elapsed time is 50.323666 seconds.
Combination #299
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.459213e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.501485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.636480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.444673e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=4.447352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 Warning: Failure at t=1.359891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.509064e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.441449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.454577e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chan...
Combination #299
Elapsed time is 49.264091 seconds.
Combination #300
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.295416e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.276254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.372139e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 Warning: Failure at t=1.225852e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.232311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.590073e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.217997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.104025e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 Warning: Failure at t=1.117155e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e...
Combination #300
Elapsed time is 243.017017 seconds.
Combination #301
RUNNING ... #9 Warning: Failure at t=1.084238e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.228453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.261394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.136947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.284006e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.704946e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.156349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.093472e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.089414e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #301
Elapsed time is 38.051065 seconds.
Combination #302
RUNNING ... #9 Warning: Failure at t=1.241007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=3.170134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.187568e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #99 Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.622959e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.549435e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 Warning: Failure at t=1.442831e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=2.072943e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 Warning: Failure at t=1.222850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=4.260398e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #25 Warning: Failure at t=1.246197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737...
Combination #302
Elapsed time is 69.413580 seconds.
Combination #303
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.284466e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.168043e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 Warning: Failure at t=1.229067e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.179928e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.229144e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.247210e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.054660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=2.482194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.092887e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+0...
Combination #303
Elapsed time is 60.845639 seconds.
Combination #304
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.216587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.412617e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 Warning: Failure at t=1.964775e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.282735e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #63 RUNNING ... #62 Warning: Failure at t=1.859931e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.167875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #80 Warning: Failure at t=1.381163e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #90 RUNNING ... #89 Warning: Failure at t=1.098299e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.287286e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line ...
Combination #304
Elapsed time is 108.417848 seconds.
Combination #305
RUNNING ... #9 Warning: Failure at t=1.134201e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.859270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.860279e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.259628e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.268180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.989760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.385576e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.207109e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.681348e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.800242e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #305
Elapsed time is 38.435404 seconds.
Combination #306
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.741654e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.161955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009360e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071849e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #47 RUNNING ... #46 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=1.037953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/ch...
Combination #306
Elapsed time is 50.525973 seconds.
Combination #307
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=4.682228e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 RUNNING ... #31 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=1.739924e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #740 RUNNING ... #739 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #47 Warning: Failure at t=2.457559e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #181 RUNNING ... #261 RUNNING ... #260 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #819 RUNNING ... #818 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 Warning: Failure at t=4.138887e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #650 RUNNING ... #649 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 Warning: Failure at t=4.545191e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #887 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 Warning: Failure at t=2.217646e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #807 Warning: Failure at t=1.722298e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #806 RUNNING ... #805 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 Warning: Failure at t=2.361816e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #570 RUNNING ... #569 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #804 RUNNING ... #803 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 Warning: Failure at t=2.001462e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #474 RUNNING ... #632 RUNNING ... #631 RUNNING ... #630 RUNNING ... #802 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #1025 RUNNING ... #1024 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #319 RUNNING ... #318 RUNNING ... #317 RUNNING ... #316 RUNNING ... #315 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #473 RUNNING ... #472 RUNNING ... #471 RUNNING ... #470 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #1023 Warning: Failure at t=1.860885e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1022 RUNNING ... #1021 RUNNING ... #168 RUNNING ... #167 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #469 RUNNING ... #468 RUNNING ... #467 RUNNING ... #466 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #629 RUNNING ... #801 RUNNING ... #800 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #948 RUNNING ... #1020 RUNNING ... #1019 RUNNING ... #1018 RUNNING ... #1017 RUNNING ... #1016 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136...
Combination #307
Elapsed time is 57.501550 seconds.
Combination #308
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.089786e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #66 Warning: Failure at t=1.009570e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.041985e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the st...
Combination #308
Elapsed time is 353.480159 seconds.
Combination #309
RUNNING ... #9 Warning: Failure at t=1.539495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.124571e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.538326e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.115648e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.252364e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=2.609261e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=3.456208e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.091022e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.508997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.431428e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration to...
Combination #309
Elapsed time is 46.913700 seconds.
Combination #310
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.153551e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #93 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=9.415383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #48 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=1.939368e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=4.309442e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #83 RUNNING ... #82 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 Warning: Failure at t=1.608140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 Warning: Failure at t=1.745710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.202241e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #421 Warning: Failure at t=4.576349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #503 RUNNING ... #502 RUNNING .....
Combination #310
Elapsed time is 58.253830 seconds.
Combination #311
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.736412e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.263092e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=3.695476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.811123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.911744e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #9 RUNNING ... #8 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #51 Warning: Failure at t=1.747441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.597511e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #71 RUNNING ... #70 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.119102e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #47 RUNNING ... #46 RUNNING ... #73 RUNNING ... #85 RUNNING ...
Combination #311
Elapsed time is 73.218837 seconds.
Combination #312
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.159940e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.370678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 Warning: Failure at t=1.073535e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=1.200985e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.135128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.659763e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.066532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.671283e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #5 Warning: Failure at t=1.210082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #312
Elapsed time is 67.868728 seconds.
Combination #313
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.304063e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=2.075939e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.434329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 Warning: Failure at t=1.468875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 Warning: Failure at t=1.377606e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 Warning: Failure at t=1.252503e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.563518e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 Warning: Failure at t=1.375181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.270639e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.590876e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.186692e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel...
Combination #313
Elapsed time is 59.585008 seconds.
Combination #314
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.843216e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.581955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.550489e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 Warning: Failure at t=2.709241e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=5.448261e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 Warning: Failure at t=4.561466e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.142164e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 Warning: Failure at t=2.066142e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #66 Warning: Failure at t=1.009312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/c...
Combination #314
Elapsed time is 59.561318 seconds.
Combination #315
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.043205e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 Warning: Failure at t=1.038910e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.50000...
Combination #315
Elapsed time is 36.963157 seconds.
Combination #316
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=3.302512e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 Warning: Failure at t=1.770187e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.449247e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.745435e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=5.009765e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #78 Warning: Failure at t=2.139867e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=2.765347e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.650310e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.084266e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #49 Warning: Failure at t=2.894714e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.563729e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009732e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #94 Warning: Failure at t=1.473281e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=4.751100e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #46 RUNNING ... #740 Warning: Failure at t=1.973012e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #82 RUNNING ... #19 RUNNING ... #424 Warning: Failure at t=1.512812e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #56 Warning: Failure at t=1.611698e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #93 Warning: Failure at t=4.034564e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #92 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=4.921718e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #263 Warning: Failure at t=1.254228e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #420 Warning: Failure at t=1.778905e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #419 RUNNING ... #418 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #184 RUNNING ... #183 Warning: Failure at t=3.857955e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.040254e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 Warning: Failure at t=3.406011e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #893 Warning: Failure at t=2.684544e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.653481e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #100 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 Warning: Failure at t=2.447345e+02. Unable to meet integration tolerances without ...
Combination #316
Elapsed time is 61.830398 seconds.
Combination #317
RUNNING ... #9 Warning: Failure at t=1.069685e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.057826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.373906e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.141971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.791217e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=8.756157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.177486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.105594e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.055771e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.266951e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value a...
Combination #317
Elapsed time is 34.849544 seconds.
Combination #318
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=1.469955e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009286e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #96 Warning: Failure at t=2.933215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.396453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.620443e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=2.760567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.130739e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.065717e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at ...
Combination #318
Elapsed time is 73.373021 seconds.
Combination #319
RUNNING ... #9 Warning: Failure at t=1.084126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.114073e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.765558e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.227568e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.194066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.306234e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.443561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.181509e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.195134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.182087e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #319
Elapsed time is 351.658092 seconds.
Combination #320
RUNNING ... #9 Warning: Failure at t=1.357927e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.395168e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.259126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.205971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.211392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=3.082507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.183516e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.182114e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.196573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without r...
Combination #320
Elapsed time is 36.673601 seconds.
Combination #321
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009285e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 RUNNING ... #4 Warning: Failure at t=1.479764e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.475103e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #79 RUNNING ... #78 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.689856e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.133380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #57 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #92 RUNNING ... #1 RUNNING ... #19 RUNNING ... #28 Warning: Failure at t=1.066497e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #10 RUNNING ... #56 Warning: Failure at t=4.349317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at ...
Combination #321
Elapsed time is 90.812859 seconds.
Combination #322
RUNNING ... #9 Warning: Failure at t=1.321921e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.885646e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.298326e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.168091e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.348424e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.306730e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.622403e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.260727e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=3.782672e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=3.121739e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #322
Elapsed time is 40.227117 seconds.
Combination #323
RUNNING ... #9 Warning: Failure at t=1.322577e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.153014e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.638904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.070571e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.269818e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.052608e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #72 Warning: Failure at t=1.632600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.740156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.226074e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.083512e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.506099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at...
Combination #323
Elapsed time is 61.669040 seconds.
Combination #324
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.496711e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.154126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073008e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 Warning: Failure at t=2.444437e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.757490e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 Warning: Failure at t=1.742505e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832)...
Combination #324
Elapsed time is 43.571289 seconds.
Combination #325
RUNNING ... #9 Warning: Failure at t=1.258459e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=3.226731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.592966e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.760283e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=2.369637e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=2.053953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.268218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=2.200177e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.443885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.252906e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunct...
Combination #325
Elapsed time is 44.568183 seconds.
Combination #326
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.384134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.519452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.298746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=7.123916e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.106268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.122582e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.063980e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.998494e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.847632e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In pa...
Combination #326
Elapsed time is 67.637587 seconds.
Combination #327
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.079052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009541e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #92 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.259499e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.039200e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #419 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #178 RUNNING ... #177 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 Warning: Failure at t=1.133331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_gene...
Combination #327
Elapsed time is 45.090746 seconds.
Combination #328
RUNNING ... #9 Warning: Failure at t=1.107558e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.221765e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.371935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.199964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.174729e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.284685e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.168500e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.256032e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.072167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the st...
Combination #328
Elapsed time is 35.591235 seconds.
Combination #329
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.187522e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.063572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.058633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.090513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.121236e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.082927e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=2.310020e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.086718e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.100364e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.118141e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.077573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (...
Combination #329
Elapsed time is 50.276927 seconds.
Combination #330
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=2.313908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.291737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 Warning: Failure at t=1.187169e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.320560e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.207710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.148687e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 Warning: Failure at t=1.392429e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.141986e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.215058e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.249615e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_ch...
Combination #330
Elapsed time is 384.455947 seconds.
Combination #331
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.753657e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.491968e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.149572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.485214e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 Warning: Failure at t=1.385712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 Warning: Failure at t=3.698737e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.726192e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (l...
Combination #331
Elapsed time is 41.955244 seconds.
Combination #332
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.403522e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.596706e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=7.760857e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=1.141296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.689599e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.525681e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=2.438167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.495023e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=1.719736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=5.116579e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.291861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size bel...
Combination #332
Elapsed time is 56.697980 seconds.
Combination #333
RUNNING ... #9 Warning: Failure at t=1.048487e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.045756e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.202544e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.093006e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.290211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.304636e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.061850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.163995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.150539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #333
Elapsed time is 33.979759 seconds.
Combination #334
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.068371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 Warning: Failure at t=1.444131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #5 RUNNING ... #4 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.259446e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=5.371667e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.694230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.117024e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=1.689307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.336893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_func...
Combination #334
Elapsed time is 71.780671 seconds.
Combination #335
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.314067e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.408894e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #108 Warning: Failure at t=1.166633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=5.569594e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=6.715816e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=2.595030e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.275990e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=2.043838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=1.289310e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. >...
Combination #335
Elapsed time is 148.007378 seconds.
Combination #336
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.192724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.328248e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.609845e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=8.174136e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.254976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.116327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.061055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.257034e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integr...
Combination #336
Elapsed time is 63.552471 seconds.
Combination #337
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 Warning: Failure at t=1.157990e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.120692e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.185328e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.137813e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.137636e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.151884e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.231790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 Warning: Failure at t=1.193584e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.184796e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_gene...
Combination #337
Elapsed time is 64.147794 seconds.
Combination #338
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.463101e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #89 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #9 RUNNING ... #8 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 Warning: Failure at t=1.498305e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.988135e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 RUNNING ... #26 Warning: Failure at t=4.151729e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 Warning: Failure at t=1.202644e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #88 RUNNING ... #105 RUNNING ... #7 Warning: Failure at t=4.304496e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 Warning: Failure at t=3.816428e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.615706e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.318559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=4.903204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 RUNNING ... #58 Warning: Failure at t=1.536906e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 Warning: Failure at t=2.706173e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=4.876273e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.298791e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=3.716733e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=1.941961e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.770211e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #57 Warning: Failure at t=3.122688e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=1.781878e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 RUNNING ... #77 RUNNING ... #6 RUNNING ... #5 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.116849e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.125853e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 83...
Combination #338
Elapsed time is 133.942433 seconds.
Combination #339
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=1.455616e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.372952e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #96 Warning: Failure at t=2.780508e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 Warning: Failure at t=1.128352e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=2.430327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #740 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.065186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without redu...
Combination #339
Elapsed time is 72.829793 seconds.
Combination #340
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.202645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.315126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.571460e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=2.236630e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.405822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.260567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009166e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.287206e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #96 Warning: Failure at t=2.215170e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet inte...
Combination #340
Elapsed time is 86.699396 seconds.
Combination #341
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.146116e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.901520e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=1.079751e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=1.193396e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=1.457989e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.121810e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.431131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 Warning: Failure at t=1.623974e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.122484e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.839736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFun...
Combination #341
Elapsed time is 355.665061 seconds.
Combination #342
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.128275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.568423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.382484e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=2.534036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.169677e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.445498e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 Warning: Failure at t=1.074267e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) ...
Combination #342
Elapsed time is 43.527927 seconds.
Combination #343
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=3.072961e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.237408e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=2.849558e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.670226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.618533e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.709270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.912789e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=6.942603e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.115215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67...
Combination #343
Elapsed time is 104.918186 seconds.
Combination #344
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.005660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 Warning: Failure at t=1.428816e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.277904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 Warning: Failure at t=1.269052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 Warning: Failure at t=1.256760e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.204186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.316461e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.204860e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.167903e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 Warning: Failure at t=1.343086e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning...
Combination #344
Elapsed time is 72.029832 seconds.
Combination #345
RUNNING ... #9 Warning: Failure at t=1.649802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.914452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.421518e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.987940e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.350347e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.444526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.491184e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.904135e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.297960e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.779540e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Wa...
Combination #345
Elapsed time is 83.255367 seconds.
Combination #346
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.392556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.124808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 Warning: Failure at t=1.597880e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 Warning: Failure at t=2.136473e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.215101e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.104184e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #10 RUNNING ... #28 Warning: Failure at t=1.057210e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. ...
Combination #346
Elapsed time is 91.868023 seconds.
Combination #347
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.191408e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #47 RUNNING ... #46 RUNNING ... #740 RUNNING ... #739 Warning: Failure at t=3.412052e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #181 RUNNING ... #180 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=1.038678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #420 RUNNING ... #419 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #732 RUNNING ... #731 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #887 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances witho...
Combination #347
Elapsed time is 49.199574 seconds.
Combination #348
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 Warning: Failure at t=1.929940e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 Warning: Failure at t=1.502783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.140113e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067650e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 Warning: Failure at t=1.009302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.149198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.491439e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 Warning: Failure at t=1.444632e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Un...
Combination #348
Elapsed time is 61.639870 seconds.
Combination #349
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #101 RUNNING ... #100 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #181 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #497 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #819 RUNNING ... #818 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #649 RUNNING ... #648 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #887 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #803 RUNNING ... #802 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1026 RUNNING ... #1025 RUNNING ... #1024 RUNNING ... #1023 RUNNING ... #1022 RUNNING ... #168 RUNNING ... #167 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #398 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #555 RUNNING ... #631 RUNNING ... #630 RUNNING ... #629 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #948 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at tim...
Combination #349
Elapsed time is 44.858625 seconds.
Combination #350
RUNNING ... #9 Warning: Failure at t=1.047549e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.148368e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.080290e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.056715e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.051114e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.117380e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.076238e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.084581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.099695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.070126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #350
Elapsed time is 48.651866 seconds.
Combination #351
RUNNING ... #9 Warning: Failure at t=1.042622e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.041581e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.163221e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.079122e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.230910e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.638873e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.093252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.067084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.078958e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171...
Combination #351
Elapsed time is 33.544707 seconds.
Combination #352
RUNNING ... #9 Warning: Failure at t=1.176790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.096096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.854547e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.375474e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.158106e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.283773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.190965e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.064984e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.296539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.13686...
Combination #352
Elapsed time is 359.882872 seconds.
Combination #353
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.311348e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.199199e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.514905e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.168401e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.399051e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.878226e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.360323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.241829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.274420e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable ...
Combination #353
Elapsed time is 55.087742 seconds.
Combination #354
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=2.075623e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.840791e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 RUNNING ... #3 Warning: Failure at t=1.328421e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #21 Warning: Failure at t=1.990738e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.151699e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/...
Combination #354
Elapsed time is 46.745731 seconds.
Combination #355
RUNNING ... #9 Warning: Failure at t=1.280330e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.884672e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.340612e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.672941e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.578040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.923809e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.270860e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 Warning: Failure at t=7.566641e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=2.130585e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=2.015971e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure a...
Combination #355
Elapsed time is 46.631706 seconds.
Combination #356
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.290138e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.202501e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.913577e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.437161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 Warning: Failure at t=1.248032e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=2.005474e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.694689e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.297275e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value al...
Combination #356
Elapsed time is 53.504385 seconds.
Combination #357
RUNNING ... #9 Warning: Failure at t=1.052165e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.043183e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.199382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.097979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.263668e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.033323e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.115715e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.050721e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.164713e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #357
Elapsed time is 34.104954 seconds.
Combination #358
RUNNING ... #9 Warning: Failure at t=1.296432e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.350684e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.059865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.152118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.052882e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.434910e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.243043e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.622597e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.466727e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.128265e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=4.279883e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without...
Combination #358
Elapsed time is 41.792680 seconds.
Combination #359
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #420 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 Warning: Failure at t=4.057573e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 Warning: Failure at t=1.049145e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #804 RUNNING ... #803 Warning: Failure at t=2.939638e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #168 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without re...
Combination #359
Elapsed time is 40.374431 seconds.
Combination #360
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #55 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.638913e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #420 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #416 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #804 RUNNING ... #803 RUNNING ... #802 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #562 RUNNING ... #561 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #631 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #948 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed ...
Combination #360
Elapsed time is 41.514217 seconds.
Combination #361
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.117458e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 Warning: Failure at t=1.211972e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.181447e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.099224e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.201208e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.025855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.083635e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.193979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.200705e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.147333e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+...
Combination #361
Elapsed time is 53.508113 seconds.
Combination #362
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.298212e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=5.722391e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.304918e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.459233e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.241774e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=1.206554e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 Warning: Failure at t=2.805433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=5.490891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.259277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009209e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.353544e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration toleranc...
Combination #362
Elapsed time is 74.715071 seconds.
Combination #363
RUNNING ... #9 Warning: Failure at t=1.127738e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.671695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.259600e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.498356e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.235556e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.097441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.660011e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 Warning: Failure at t=1.246668e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=3.033123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 Warning: Failure at t=1.596838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smalles...
Combination #363
Elapsed time is 386.065779 seconds.
Combination #364
RUNNING ... #9 Warning: Failure at t=1.066674e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.059150e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.353234e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.574797e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.170500e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.111096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.067776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.255093e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.225923e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #364
Elapsed time is 40.382767 seconds.
Combination #365
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.555859e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=2.167594e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.106667e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.256381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.214755e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.059171e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.401678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009109e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below ...
Combination #365
Elapsed time is 82.902896 seconds.
Combination #366
RUNNING ... #9 Warning: Failure at t=1.418428e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.106086e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.207449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.761804e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.704458e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.270794e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.103784e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=2.578293e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.221908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chann...
Combination #366
Elapsed time is 56.952701 seconds.
Combination #367
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=3.202814e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=4.967936e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.505514e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=4.467553e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=4.295495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=4.093184e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 Warning: Failure at t=1.954450e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.800767e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #105 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.496365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.111685e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.483270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=7.491370e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #77 RUNNING ... #104 RUNNING ... #103 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=3.236797e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=2.839589e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #46 RUNNING ... #58 Warning: Failure at t=1.846399e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.527917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #19 Warning: Failure at t=3.651056e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_chan...
Combination #367
Elapsed time is 113.142149 seconds.
Combination #368
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.135092e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.471758e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=3.170280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.066831e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.382150e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.499399e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.960260e+01. Unable to meet integration tolerances without red...
Combination #368
Elapsed time is 42.183182 seconds.
Combination #369
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.308583e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.305904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.738426e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.243331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #98 Warning: Failure at t=1.550425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.824642e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.308657e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.225263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=3.711767e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=3.941423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=2.193587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.219518e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable t...
Combination #369
Elapsed time is 47.977788 seconds.
Combination #370
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.229810e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.556074e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.023976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #4 Warning: Failure at t=1.385823e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.598296e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.108408e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.686373e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009132e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=3.284470e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84...
Combination #370
Elapsed time is 69.552093 seconds.
Combination #371
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.084789e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.333661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.328339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=1.368181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.212766e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=1.651727e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.782069e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.274490e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.134340e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.481118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.309434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.780743e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFu...
Combination #371
Elapsed time is 61.837370 seconds.
Combination #372
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #893 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #1030 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing ...
Combination #372
Elapsed time is 36.645816 seconds.
Combination #373
RUNNING ... #54 RUNNING ... #53 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #81 RUNNING ... #80 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.702344e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.266588e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=2.237826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #69 RUNNING ... #68 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=9.871653e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.151270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=2.131400e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #29 RUNNING ... #28 RUNNING ... #51 Warning: Failure at t=2.883534e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #57 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009359e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=1.325814e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #19 Warning: Failure at t=1.070381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #56 Warning: Failure at t=3.773544e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 Warning: Failure at t=4.201821e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #185 RUNNING ... #184 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #373
Elapsed time is 80.954556 seconds.
Combination #374
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #62 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=3.438493e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=4.765426e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #420 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #736 RUNNING ... #735 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #731 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #416 RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #640 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #400 RUNNING ... #399 RUNNING ... #398 RUNNING ... #397 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #562 RUNNING ... #561 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #631 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.504517e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.750452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.450452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.750452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.450452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.850452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.550452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.850452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.550452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.950452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.250452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.650452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.950452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.350452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.650452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.050452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.350452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #872 RUNNING ... #871 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #951 RUNNING ... #1031 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #374
Elapsed time is 364.612704 seconds.
Combination #375
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.652870e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #4 Warning: Failure at t=1.321899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.204741e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.104170e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.393478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.058572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=1.979346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In paral...
Combination #375
Elapsed time is 74.302858 seconds.
Combination #376
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.165248e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.021825e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #44 Warning: Failure at t=1.441449e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #80 RUNNING ... #79 Warning: Failure at t=2.208165e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.962385e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #15 Warning: Failure at t=3.778939e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.846534e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #88 RUNNING ... #105 Warning: Failure at t=1.832271e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 RUNNING ... #103 RUNNING ... #32 RUNNING ... #57 RUNNING ... #71 RUNNING ... #70 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=2.668163e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #8 RUNNING ... #25 Warning: Failure at t=1.274883e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.122553e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 Warning: Failure at t=2.272757e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.419114e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #92 RUNNING ... #102 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.064103e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 Warning: Failure at t=1.704616e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.652668e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #376
Elapsed time is 1443.600289 seconds.
Combination #377
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.525157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.153312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.172136e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #740 Warning: Failure at t=1.473655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #898 RUNNING ... #897 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.850530e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01...
Combination #377
Elapsed time is 49.209651 seconds.
Combination #378
RUNNING ... #9 Warning: Failure at t=1.286504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.882161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.159300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.308491e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.387923e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.607790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.578788e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.294925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=3.558127e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #378
Elapsed time is 38.064754 seconds.
Combination #379
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 Warning: Failure at t=1.122891e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.352941e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=2.490074e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.432552e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 Warning: Failure at t=2.242316e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.134251e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.985786e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.378193e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=3.635980e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remotePar...
Combination #379
Elapsed time is 57.630816 seconds.
Combination #380
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #577 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #893 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #177 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #888 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #568 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 Warning: Failure at t=2.935392e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #168 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #247 RUNNING ... #246 RUNNING ... #245 RUNNING ... #244 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #563 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #319 RUNNING ... #318 RUNNING ... #317 RUNNING ... #316 RUNNING ... #315 RUNNING ... #398 RUNNING ... #397 RUNNING ... #396 RUNNING ... #395 RUNNING ... #394 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #555 RUNNING ... #554 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #714 RUNNING ... #713 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #793 RUNNING ... #875 RUNNING ... #874 RUNNING ... #873 Warning: Failure at t=9.504517e+00....
Combination #380
Elapsed time is 42.079422 seconds.
Combination #381
RUNNING ... #9 Warning: Failure at t=1.065215e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.183941e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.424964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.149850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.128438e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.106447e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.137050e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.785936e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #381
Elapsed time is 37.118517 seconds.
Combination #382
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.636636e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #4 Warning: Failure at t=1.478630e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.142436e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.152795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #503 RUNNING ... #502 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 Warning: Failure at t=1.382807e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #76 RUNNING ... #75 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reduci...
Combination #382
Elapsed time is 46.971899 seconds.
Combination #383
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #94 RUNNING ... #93 RUNNING ... #4 Warning: Failure at t=1.489049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.137904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068390e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 Warning: Failure at t=3.334407e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 Warning: Failure at t=2.780773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In...
Combination #383
Elapsed time is 84.812554 seconds.
Combination #384
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.113874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.080064e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.137300e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.075221e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.094793e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.111161e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.073697e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.072328e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.122269e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.173067e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.089947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (li...
Combination #384
Elapsed time is 56.304029 seconds.
Combination #385
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.140047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.456966e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=2.021010e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #89 Warning: Failure at t=3.652258e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #35 RUNNING ... #63 RUNNING ... #62 RUNNING ... #78 RUNNING ... #88 RUNNING ... #12 RUNNING ... #26 RUNNING ... #43 RUNNING ... #42 RUNNING ... #70 RUNNING ... #87 RUNNING ... #86 RUNNING ... #105 RUNNING ... #7 RUNNING ... #25 RUNNING ... #34 RUNNING ... #33 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 Warning: Failure at t=1.479646e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.141593e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=2.872434e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #11 Warning: Failure at t=1.291717e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=4.391333e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 RUNNING ... #58 Warning: Failure at t=2.075654e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #6 Warning: Failure at t=2.157878e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #57 Warning: Failure at t=3.188612e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 RUNNING ... #103 RUNNING ... #10 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.976140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.122925e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 Warning: Failure at t=1.967395e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3....
Combination #385
Elapsed time is 453.189977 seconds.
Combination #386
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.106727e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.072904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.903269e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.066513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.088160e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.104277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.068383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.067150e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.114919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.164366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.084051e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (li...
Combination #386
Elapsed time is 49.092882 seconds.
Combination #387
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.191000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.285621e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.231554e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.278071e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.592783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 Warning: Failure at t=1.757948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.491149e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 Warning: Failure at t=8.217382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.863895e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.817335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode...
Combination #387
Elapsed time is 57.190778 seconds.
Combination #388
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.372433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=2.192188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.411494e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.346007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.459061e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #10 Warning: Failure at t=1.126882e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3...
Combination #388
Elapsed time is 80.813621 seconds.
Combination #389
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.142528e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #86 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.444810e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.334911e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.545290e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 Warning: Failure at t=1.125197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #51 Warning: Failure at t=2.421216e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #740 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #92 RUNNING ... #100 RUNNING ... #10 Warning: Failure at t=2.137511e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #28 Warning: Failure at t=1.064426e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_gen...
Combination #389
Elapsed time is 84.278776 seconds.
Combination #390
RUNNING ... #9 Warning: Failure at t=1.070725e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.044488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.230634e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.744806e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.151833e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.087536e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.149112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.038202e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.199153e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.1368...
Combination #390
Elapsed time is 42.622657 seconds.
Combination #391
RUNNING ... #9 Warning: Failure at t=1.101145e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.171131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.391645e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.298837e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.178893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.117611e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.114331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.274643e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.185932e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below th...
Combination #391
Elapsed time is 89.032699 seconds.
Combination #392
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.361116e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=4.572783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 Warning: Failure at t=5.680562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.413398e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 Warning: Failure at t=2.072328e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.891010e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 Warning: Failure at t=2.418502e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=3.335448e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=3.759058e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 Warning: Failure at t=1.242655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #8 RUNNING ... #13 RUNNING ... #12 RUNNING ... #26 RUNNING ... #62 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #96 Warning: Failure at t=1.890741e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.496802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration toleran...
Combination #392
Elapsed time is 273.354210 seconds.
Combination #393
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=6.945201e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.577530e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.615099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 Warning: Failure at t=1.403903e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=5.025879e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=2.190108e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=2.906325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=1.144269e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_fu...
Combination #393
Elapsed time is 70.332335 seconds.
Combination #394
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=4.824344e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=4.248239e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #44 Warning: Failure at t=3.960879e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #42 Warning: Failure at t=2.909020e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #90 RUNNING ... #89 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.208916e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=3.068130e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 Warning: Failure at t=4.122003e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.896228e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.702146e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #13 RUNNING ... #12 RUNNING ... #25 Warning: Failure at t=1.781249e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=8.347209e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.930543e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 Warning: Failure at t=4.213163e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=5.362289e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #95 RUNNING ... #94 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #7 Warning: Failure at t=1.475904e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=3.630201e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.145320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=3.964363e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009315e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.481529e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=5.160374e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.068493e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s ...
Combination #394
Elapsed time is 79.016138 seconds.
Combination #395
RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #34 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=4.605592e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 RUNNING ... #3 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #67 Warning: Failure at t=3.030822e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 RUNNING ... #65 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #2 RUNNING ... #1 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #56 RUNNING ... #55 RUNNING ... #64 RUNNING ... #73 RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 Warning: Failure at t=4.542951e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #101 RUNNING ... #100 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #420 RUNNING ... #419 RUNNING ... #418 RUNNING ... #47 RUNNING ... #46 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #894 RUNNING ... #893 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 Warning: Failure at t=2.179469e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #417 RUNNING ... #416 Warning: Failure at t=3.988802e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #494 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #731 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #253 RUNNING ... #252 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #415 RUNNING ... #414 Warning: Failure at t=5.097428e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 Warning: Failure at t=5.167433e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.818989e-12) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #807 RUNNING ... #806 Warning: Failure at t=3.419271e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #888 RUNNING ... #887 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #488 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #575 RUNNING ... #574 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #802 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #247 RUNNING ... #246 RUNNING ... #245 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #168 RUNNING ... #167 RUNNING ... #166 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #408 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #570 RUNNING ... #637 RUNNING ... #636 RUNNING ... #635 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #953 RUNNING ... #952 RUNNING ... #951 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #241 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.964620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.664620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.364620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.764620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.464620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.164620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.564620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.864620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.264620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t...
Combination #395
Elapsed time is 61.043324 seconds.
Combination #396
RUNNING ... #9 Warning: Failure at t=1.267372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.133299e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.038658e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.189892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.314691e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.066402e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.209591e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.293460e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.159826e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration to...
Combination #396
Elapsed time is 371.010897 seconds.
Combination #397
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.265676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.722357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.135102e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #4 Warning: Failure at t=1.392726e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.685330e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.115633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009203e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-...
Combination #397
Elapsed time is 66.032963 seconds.
Combination #398
RUNNING ... #9 Warning: Failure at t=1.145825e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.628118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.247952e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.162278e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.193308e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.793800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.236957e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.138430e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.285636e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.041387e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tol...
Combination #398
Elapsed time is 50.775615 seconds.
Combination #399
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.256612e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.175532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.246055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.163644e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.376049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.302369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.210388e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.254244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.050562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances w...
Combination #399
Elapsed time is 54.673162 seconds.
Combination #400
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.367614e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 Warning: Failure at t=1.558487e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.224320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.106461e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.689739e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.032469e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #28 Warning: Failure at t=1.058734e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the sma...
Combination #400
Elapsed time is 84.963528 seconds.
Combination #401
RUNNING ... #9 Warning: Failure at t=1.054874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.043752e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.228107e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.107720e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.213962e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.183470e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.122122e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.085042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #401
Elapsed time is 33.138329 seconds.
Combination #402
RUNNING ... #9 Warning: Failure at t=1.276239e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.589091e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=8.218786e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.271099e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #90 Warning: Failure at t=1.356977e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.418401e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=4.693985e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=5.223875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.023545e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.868899e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=6.796158e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable t...
Combination #402
Elapsed time is 81.772169 seconds.
Combination #403
RUNNING ... #9 Warning: Failure at t=1.157716e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.527066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.567626e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.122636e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.227391e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=2.859476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.576045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.256695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.171676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.072339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #403
Elapsed time is 36.998018 seconds.
Combination #404
RUNNING ... #27 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #4 RUNNING ... #3 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #2 RUNNING ... #1 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009790e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #92 RUNNING ... #91 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #100 Warning: Failure at t=2.139723e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #500 RUNNING ... #499 RUNNING ... #47 RUNNING ... #46 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #894 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #259 Warning: Failure at t=1.048441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 Warning: Failure at t=3.898595e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #420 RUNNING ... #419 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #177 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #731 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #893 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #176 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #494 Warning: Failure at t=3.546538e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #575 Warning: Failure at t=3.844421e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #646 RUNNING ... #645 RUNNING ... #809 Warning: Failure at t=4.579716e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1041 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #175 RUNNING ... #174 Warning: Failure at t=4.843052e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Fa...
Combination #404
Elapsed time is 69.052662 seconds.
Combination #405
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.577656e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.196453e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.078482e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009483e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 RUNNING ... #181 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=3.423644e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #261 RUNNING ... #260 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #893 Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #420 RUNNING ... #419 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remotePa...
Combination #405
Elapsed time is 62.006940 seconds.
Combination #406
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.141220e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.124653e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.078916e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.075832e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.119495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.457404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.158321e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.108961e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=2.194539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.191616e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01...
Combination #406
Elapsed time is 169.494599 seconds.
Combination #407
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.353892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.208953e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #25 Warning: Failure at t=1.296090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.704677e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 Warning: Failure at t=1.324111e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.690948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.910092e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.631440e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (li...
Combination #407
Elapsed time is 382.261378 seconds.
Combination #408
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=7.776075e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #14 RUNNING ... #51 Warning: Failure at t=2.057854e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009251e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.425307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.310856e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 Warning: Failure at t=3.613770e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=3.384732e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.364441e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #1 Warning: Failure at t=1.829662e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.122593e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel...
Combination #408
Elapsed time is 88.902593 seconds.
Combination #409
RUNNING ... #9 Warning: Failure at t=1.047265e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.177786e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.086495e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.136281e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.099324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.089855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.087680e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.057769e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.052378e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #409
Elapsed time is 41.270141 seconds.
Combination #410
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009266e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.441900e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.331189e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 Warning: Failure at t=2.551342e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.124580e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #51 Warning: Failure at t=2.458640e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #740 Warning: Failure at t=1.301838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #100 RUNNING ... #1 RUNNING ... #21 RUNNING ... #20 RUNNING ... #28 Warning: Failure at t=1.064197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunct...
Combination #410
Elapsed time is 86.540012 seconds.
Combination #411
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #7 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 Warning: Failure at t=4.396578e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.141996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009336e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.488606e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #28 Warning: Failure at t=1.068555e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #100 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.154586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.525920e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 Warning: Failure at t=2.454909e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (...
Combination #411
Elapsed time is 46.359679 seconds.
Combination #412
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.358032e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 RUNNING ... #45 Warning: Failure at t=3.871783e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.180392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #36 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=1.276030e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.808689e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.304644e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.269007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.494851e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.414932e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.250710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t....
Combination #412
Elapsed time is 71.397592 seconds.
Combination #413
RUNNING ... #9 Warning: Failure at t=1.379720e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.171653e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.871405e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.394496e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.286764e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.077040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.270106e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.424004e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.182788e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet...
Combination #413
Elapsed time is 55.996510 seconds.
Combination #414
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.468698e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 Warning: Failure at t=3.568094e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.634294e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.137400e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.067042e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #740 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #92 RUNNING ... #100 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 Warning: Failure at t=4.828247e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. ...
Combination #414
Elapsed time is 74.271194 seconds.
Combination #415
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #65 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #326 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #1036 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.064620e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channe...
Combination #415
Elapsed time is 38.903266 seconds.
Combination #416
RUNNING ... #9 Warning: Failure at t=1.230277e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=5.029381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.349553e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.214543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.337546e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=4.102493e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.353139e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.512394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.413715e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=2.927951e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.452676e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.176945e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the st...
Combination #416
Elapsed time is 41.464871 seconds.
Combination #417
RUNNING ... #9 Warning: Failure at t=1.068388e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.304849e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.083268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.073736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.212893e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.123086e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.091303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=1.175203e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.111259e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.226158e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.175149e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01...
Combination #417
Elapsed time is 56.825697 seconds.
Combination #418
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 Warning: Failure at t=1.373567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.415045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.175413e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.531084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.314880e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=1.895340e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.436822e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 Warning: Failure at t=2.495318e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.148108e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.834802e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_g...
Combination #418
Elapsed time is 359.463002 seconds.
Combination #419
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.398229e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.173276e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.260696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.762753e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.186536e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.115178e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.061388e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet ...
Combination #419
Elapsed time is 84.416676 seconds.
Combination #420
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.284217e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #4 Warning: Failure at t=1.626337e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #25 Warning: Failure at t=1.351343e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=2.679463e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.771855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.128262e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #51 Warning: Failure at t=3.069572e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.205311e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009258e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 Warning: Failure at t=9.685773e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=4.660358e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #1 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.065175e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t...
Combination #420
Elapsed time is 68.058613 seconds.
Combination #421
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.099246e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.244512e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=2.047509e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=2.105839e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.321946e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=1.458287e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.038211e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.437775e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.669169e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_f...
Combination #421
Elapsed time is 70.634474 seconds.
Combination #422
RUNNING ... #9 Warning: Failure at t=1.143009e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.515776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.567841e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.447965e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.267914e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=1.170700e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=7.245104e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.393303e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=3.189485e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=1.725445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 Warning: Failure at t=1.758702e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel...
Combination #422
Elapsed time is 55.899809 seconds.
Combination #423
RUNNING ... #9 Warning: Failure at t=1.173344e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.419781e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.931601e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.161443e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.271861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.327126e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.372282e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.211018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.950210e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.935077e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #423
Elapsed time is 38.914880 seconds.
Combination #424
RUNNING ... #9 Warning: Failure at t=1.186508e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.295526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.122410e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.767066e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.312497e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=2.117297e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.735879e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.107849e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=2.133531e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.211426e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.365440e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.450413e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01...
Combination #424
Elapsed time is 45.617899 seconds.
Combination #425
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.379513e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.303361e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.749777e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.206797e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=3.451892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 Warning: Failure at t=1.409937e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.249995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.327601e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.940382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.321901e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chann...
Combination #425
Elapsed time is 44.230432 seconds.
Combination #426
RUNNING ... #9 Warning: Failure at t=1.077560e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.420029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.158288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.213468e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.158387e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.151089e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.123885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.250490e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 Warning: Failure at t=1.144526e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #426
Elapsed time is 47.533560 seconds.
Combination #427
RUNNING ... #9 Warning: Failure at t=1.054889e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.047427e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.236611e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.568862e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.140312e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.059917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.186564e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.145987e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.056530e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.063678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #427
Elapsed time is 47.600753 seconds.
Combination #428
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.084538e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.338710e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.779643e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.993858e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.283728e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.414996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.985651e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 Warning: Failure at t=1.852655e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.125240e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the small...
Combination #428
Elapsed time is 66.189356 seconds.
Combination #429
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #74 RUNNING ... #73 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #968 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #415 RUNNING ... #414 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #963 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #410 RUNNING ... #409 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #567 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #641 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #730 RUNNING ... #729 RUNNING ... #728 RUNNING ... #887 RUNNING ... #958 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #325 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #405 RUNNING ... #404 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #483 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #562 RUNNING ... #561 RUNNING ... #636 RUNNING ... #635 RUNNING ... #634 RUNNING ... #633 RUNNING ... #632 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #805 RUNNING ... #804 RUNNING ... #803 RUNNING ... #802 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #882 RUNNING ... #953 RUNNING ... #952 RUNNING ... #951 RUNNING ... #950 RUNNING ... #949 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 RUNNING ... #400 RUNNING ... #399 RUNNING ... #398 RUNNING ... #397 RUNNING ... #396 RUNNING ... #478 RUNNING ... #477 RUNNING ... #476 RUNNING ... #475 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #631 RUNNING ... #630 RUNNING ... #629 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #798 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #878 RUNNING ... #877 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t....
Combination #429
Elapsed time is 361.313160 seconds.
Combination #430
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=2.482483e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.430372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #44 RUNNING ... #43 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #85 Warning: Failure at t=3.234043e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.685364e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 Warning: Failure at t=1.424089e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.985801e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 Warning: Failure at t=3.043751e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 Warning: Failure at t=2.695077e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #101 RUNNING ... #100 RUNNING ... #32 Warning: Failure at t=1.133109e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #430
Elapsed time is 81.170160 seconds.
Combination #431
RUNNING ... #9 Warning: Failure at t=1.043459e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.049958e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.160741e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.079649e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.197559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.374000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.093218e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.074158e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.079772e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171...
Combination #431
Elapsed time is 36.961190 seconds.
Combination #432
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.091974e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #261 RUNNING ... #260 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #420 RUNNING ... #419 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #259 Warning: Failure at t=1.040634e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #648 Warning: Failure at t=1.039056e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) ...
Combination #432
Elapsed time is 49.981537 seconds.
Combination #433
RUNNING ... #9 Warning: Failure at t=2.034541e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=4.807357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.339568e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.531775e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=2.192843e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=2.271917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=2.660325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=3.122857e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=2.163709e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=4.309754e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.529179e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=2.463507e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.464228e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFuncti...
Combination #433
Elapsed time is 47.698943 seconds.
Combination #434
RUNNING ... #9 Warning: Failure at t=1.117006e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.058436e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.446239e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.540776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.327693e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.042926e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.505473e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.190678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #434
Elapsed time is 64.581947 seconds.
Combination #435
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.620523e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #51 Warning: Failure at t=2.092502e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 Warning: Failure at t=9.298180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.056861e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 Warning: Failure at t=1.783804e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.321301e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=3.664255e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=1.654671e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=1.449718e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=4.706511e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the...
Combination #435
Elapsed time is 85.317251 seconds.
Combination #436
RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=9.664774e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.520084e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.380919e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 Warning: Failure at t=2.715147e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=4.314484e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=5.251288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 Warning: Failure at t=1.619129e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.129270e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #49 Warning: Failure at t=5.359543e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #71 Warning: Failure at t=2.379831e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 Warning: Failure at t=3.898194e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #88 Warning: Failure at t=1.661494e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #104 Warning: Failure at t=2.707914e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.907603e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=3.345443e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #29 RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 Warning: Failure at t=2.847157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #68 Warning: Failure at t=4.005044e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009271e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 Warning: Failure at t=5.071275e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=2.851723e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time...
Combination #436
Elapsed time is 85.678250 seconds.
Combination #437
RUNNING ... #9 Warning: Failure at t=1.190280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.096996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.939024e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.129679e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.892049e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.202082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.064053e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.767976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.278633e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=1.357036e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.150649e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration to...
Combination #437
Elapsed time is 54.807338 seconds.
Combination #438
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #90 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.453047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.226362e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.558368e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=2.212181e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #78 Warning: Failure at t=1.452911e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #77 Warning: Failure at t=4.194994e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #89 Warning: Failure at t=1.952791e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.245386e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.151394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.109662e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing ...
Combination #438
Elapsed time is 2131.948623 seconds.
Combination #439
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.121868e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #35 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=4.148084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=2.974335e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #26 Warning: Failure at t=2.000450e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #70 RUNNING ... #79 RUNNING ... #78 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.350056e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #25 Warning: Failure at t=1.303936e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=4.147806e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #32 Warning: Failure at t=1.126724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #58 Warning: Failure at t=1.995114e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.185309e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #8 RUNNING ... #29 RUNNING ... #53 RUNNING ... #52 RUNNING ... #69 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.077198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=3.423922e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #28 Warning: Failure at t=1.065256e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=2.117062e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e...
Combination #439
Elapsed time is 209.361635 seconds.
Combination #440
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=4.449908e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.414230e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.130997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.505458e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.699071e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.443029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #66 Warning: Failure at t=1.009306e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.065886e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning...
Combination #440
Elapsed time is 391.400159 seconds.
Combination #441
RUNNING ... #9 Warning: Failure at t=1.044746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.036518e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.175533e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.085153e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.204551e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.189244e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.100018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.040156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.145795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #441
Elapsed time is 32.415494 seconds.
Combination #442
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.212360e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.206134e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=1.262538e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.397007e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=3.784308e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.176751e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.551364e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #108 Warning: Failure at t=1.131641e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868...
Combination #442
Elapsed time is 81.375400 seconds.
Combination #443
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=6.310808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.099033e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.285112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=2.334430e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=2.222737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.336946e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.118026e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 Warning: Failure at t=1.464004e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.496515e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_f...
Combination #443
Elapsed time is 70.489942 seconds.
Combination #444
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.488610e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.168922e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.148947e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.070459e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 Warning: Failure at t=1.198746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 8...
Combination #444
Elapsed time is 43.698135 seconds.
Combination #445
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.224420e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073528e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #19 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009439e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #83 RUNNING ... #82 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.180047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #576 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #1056 Warning: Failure at t=1.505082e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038006e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01....
Combination #445
Elapsed time is 38.035155 seconds.
Combination #446
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.201652e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #107 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.370559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.278933e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #51 Warning: Failure at t=1.975634e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.462992e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #49 Warning: Failure at t=1.079996e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=1.697539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #80 Warning: Failure at t=2.284519e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParal...
Combination #446
Elapsed time is 81.952287 seconds.
Combination #447
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=2.216048e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #14 Warning: Failure at t=1.685016e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.269997e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=3.009334e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #51 Warning: Failure at t=1.804219e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #96 Warning: Failure at t=1.848559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.607792e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #32 Warning: Failure at t=1.123031e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #56 Warning: Failure at t=1.553050e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) ...
Combination #447
Elapsed time is 86.559450 seconds.
Combination #448
RUNNING ... #9 Warning: Failure at t=1.108678e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.161393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.302563e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=5.098263e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.179456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.143980e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.245519e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.221123e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #448
Elapsed time is 34.318502 seconds.
Combination #449
RUNNING ... #9 Warning: Failure at t=1.257414e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.210040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.974339e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.567332e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=2.248686e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.728573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.254167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=2.014332e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=6.418571e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=1.915627e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 Warning: Failure at t=1.167557e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 Warning: Failure at t=2.272769e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.535212e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.651557e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size bel...
Combination #449
Elapsed time is 49.655926 seconds.
Combination #450
RUNNING ... #9 Warning: Failure at t=1.280884e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=2.421687e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.922384e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.501463e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.182252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.314465e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.183302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.387624e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.241754e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.998058e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=2.128707e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 Warning: Failure at t=1.399558e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the ste...
Combination #450
Elapsed time is 36.855942 seconds.
Combination #451
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.426660e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.150452e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 Warning: Failure at t=1.291670e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=1.190534e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.153973e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.316266e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.195562e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.080430e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 Warning: Failure at t=1.189979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 Warning: Failure at t=1.474164e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 Warning: Failure at t=1.115195e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to me...
Combination #451
Elapsed time is 371.720364 seconds.
Combination #452
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.252412e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009497e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.077476e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #48 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.225090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 Warning: Failure at t=1.634273e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.277147e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #338 RUNNING ... #337 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 Warning: Failure at t=1.039488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integrat...
Combination #452
Elapsed time is 48.434597 seconds.
Combination #453
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009398e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.536393e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.173157e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073978e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038835e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #339 Warning: Failure at t=1.206261e+01. Unable to meet integrat...
Combination #453
Elapsed time is 38.561772 seconds.
Combination #454
RUNNING ... #9 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #32 RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.096147e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009778e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #182 RUNNING ... #181 RUNNING ... #261 RUNNING ... #260 RUNNING ... #259 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #419 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 Warning: Failure at t=1.042742e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #336 RUNNING ... #335 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #571 RUNNING ... #570 RUNNING ... #648 Warning: Failure at t=1.046317e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #1046 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #331 RUNNING ... #330 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-1...
Combination #454
Elapsed time is 47.306251 seconds.
Combination #455
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.154939e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.782705e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 Warning: Failure at t=1.499975e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.199416e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=2.579081e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 Warning: Failure at t=1.302112e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=1.383229e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 Warning: Failure at t=1.361860e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=1.356780e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=1.590531e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (li...
Combination #455
Elapsed time is 78.965842 seconds.
Combination #456
RUNNING ... #9 Warning: Failure at t=1.202584e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.763320e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.287304e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.186017e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.209731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 Warning: Failure at t=2.141935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 Warning: Failure at t=1.279177e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.156698e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.426828e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.670515e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet...
Combination #456
Elapsed time is 44.066179 seconds.
Combination #457
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.195504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.075819e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 Warning: Failure at t=1.673967e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.704816e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=3.810984e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #19 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 Warning: Failure at t=6.047587e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #82 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 Warning: Failure at t=2.128983e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #420 Warning: Failure at t=2.338392e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In p...
Combination #457
Elapsed time is 42.234263 seconds.
Combination #458
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.132812e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.263340e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.160517e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 Warning: Failure at t=1.064085e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 RUNNING ... #62 Warning: Failure at t=5.855479e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.997573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.113461e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.402136e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.045866e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In ...
Combination #458
Elapsed time is 75.186721 seconds.
Combination #459
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.301111e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.782738e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.262539e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=3.278976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #81 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.239724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.582331e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.377375e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=1.846554e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #33 RUNNING ... #32 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.826618e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 Warning: Failure at t=1.890173e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=1.307654e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel...
Combination #459
Elapsed time is 105.769314 seconds.
Combination #460
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.514117e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.196847e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.178563e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.244908e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.240870e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=1.341959e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=6.369605e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #35 Warning: Failure at t=1.479877e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.257327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 Warning: Failure at t=2.097285e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In od...
Combination #460
Elapsed time is 55.691832 seconds.
Combination #461
RUNNING ... #9 Warning: Failure at t=1.439381e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=5.477659e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=3.072992e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=2.397566e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.374003e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.550268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=3.427131e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=2.028596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.434779e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 Warning: Failure at t=1.619046e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 Warning: Failure at t=1.103559e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 Warning: Failure at t=4.198121e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without ...
Combination #461
Elapsed time is 39.814048 seconds.
Combination #462
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #4 Warning: Failure at t=1.480840e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.147480e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.125028e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #64 RUNNING ... #83 RUNNING ... #82 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 Warning: Failure at t=4.403787e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #46 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.158357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.069663e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #740 Warning: Failure at t=1.381484e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chan...
Combination #462
Elapsed time is 376.096868 seconds.
Combination #463
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 Warning: Failure at t=1.345488e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=2.843586e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.841081e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.321049e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 Warning: Failure at t=4.371895e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.459877e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 Warning: Failure at t=1.631725e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 Warning: Failure at t=3.690737e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.014991e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #1 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 Warning: Failure at t=2.442975e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #37 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #74 RUNNING ... #73 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=3.151246e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #12 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009315e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #91 Warning: Failure at t=2.094771e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.136449e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #84 RUNNING ... #28 Warning: Failure at t=1.067159e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > ...
Combination #463
Elapsed time is 86.675038 seconds.
Combination #464
RUNNING ... #9 Warning: Failure at t=1.202872e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.868040e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=2.112783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.572718e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.379808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 Warning: Failure at t=4.552173e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=8.565689e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.241885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=3.946746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 Warning: Failure at t=4.312978e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #43 Warning: Failure at t=2.637892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.1...
Combination #464
Elapsed time is 123.107958 seconds.
Combination #465
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.070664e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=4.969857e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=8.284643e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.549366e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=8.652116e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.141212e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 Warning: Failure at t=8.538085e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=2.285568e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.851739e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.800079e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #22 Warning: Failure at t=3.640425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=2.629145e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067811e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. U...
Combination #465
Elapsed time is 133.179982 seconds.
Combination #466
RUNNING ... #9 Warning: Failure at t=1.156586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.108731e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.873026e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.130180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.172511e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.084444e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.144094e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.206187e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=1.340118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the st...
Combination #466
Elapsed time is 39.493220 seconds.
Combination #467
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #725 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #883 RUNNING ... #967 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #167 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #487 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #566 RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #562 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #721 RUNNING ... #720 RUNNING ... #803 RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #799 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #962 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #482 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #558 RUNNING ... #557 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #716 RUNNING ... #715 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #794 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #957 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #157 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.646197e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning:...
Combination #467
Elapsed time is 37.736128 seconds.
Combination #468
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #108 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.917167e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.166549e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071696e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #19 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009383e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #100 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #92 RUNNING ... #91 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.189307e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #47 RUNNING ... #46 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 Warning: Failure at t=1.196916e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #421 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 Warning: Failure at t=1.268577e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducin...
Combination #468
Elapsed time is 54.325579 seconds.
Combination #469
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.084917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=1.738064e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 Warning: Failure at t=1.876029e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.252095e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 Warning: Failure at t=1.090481e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.663527e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.264905e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #108 Warning: Failure at t=1.361369e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.169913e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=1.934045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/cha...
Combination #469
Elapsed time is 53.810104 seconds.
Combination #470
RUNNING ... #9 RUNNING ... #8 RUNNING ... #18 RUNNING ... #27 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.493892e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009404e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #1 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #55 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.156808e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.073688e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #92 RUNNING ... #91 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #183 RUNNING ... #182 RUNNING ... #181 RUNNING ... #261 RUNNING ... #260 RUNNING ... #341 RUNNING ... #340 RUNNING ... #339 RUNNING ... #338 RUNNING ... #421 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #819 RUNNING ... #818 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #977 RUNNING ... #976 Warning: Failure at t=1.779433e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #975 RUNNING ... #974 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #259 Warning: Failure at t=1.039074e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at t...
Combination #470
Elapsed time is 56.231293 seconds.
Combination #471
RUNNING ... #9 RUNNING ... #18 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.582327e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.197128e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #14 RUNNING ... #45 Warning: Failure at t=1.786884e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 Warning: Failure at t=1.456023e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #60 RUNNING ... #59 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.325335e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009172e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #86 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.404858e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.243064e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #58 RUNNING ... #57 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 RUNNING ... #93 RUNNING ... #107 RUNNING ... #1 Warning: Failure at t=1.111843e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances withou...
Combination #471
Elapsed time is 87.642150 seconds.
Combination #472
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.141756e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.200973e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=2.673666e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.166459e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.346792e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #52 Warning: Failure at t=1.121973e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.287816e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #71 Warning: Failure at t=1.612068e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #70 Warning: Failure at t=1.411991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure...
Combination #472
Elapsed time is 41.243559 seconds.
Combination #473
RUNNING ... #9 Warning: Failure at t=1.143546e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.825140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.697299e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.167929e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.245180e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.932397e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.298542e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.198178e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=2.341204e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #473
Elapsed time is 356.399455 seconds.
Combination #474
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 Warning: Failure at t=2.020833e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.518288e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.163124e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.071746e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009387e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.181810e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 Warning: Failure at t=1.697998e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 Warning: Failure at t=1.783877e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integra...
Combination #474
Elapsed time is 40.378050 seconds.
Combination #475
RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 Warning: Failure at t=2.958323e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #54 RUNNING ... #53 Warning: Failure at t=1.614714e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #80 RUNNING ... #99 Warning: Failure at t=5.110281e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #9 RUNNING ... #8 RUNNING ... #13 RUNNING ... #12 RUNNING ... #36 RUNNING ... #35 Warning: Failure at t=4.226306e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.320191e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.497601e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.571096e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=7.120290e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #69 RUNNING ... #68 Warning: Failure at t=9.135448e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 RUNNING ... #87 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.138995e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #46 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=9.713722e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=2.451986e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #28 Warning: Failure at t=1.068153e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 Warning: Failure at t=4.302337e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=2.427871e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #658 RUNNING ... #657 RUNNING ... #76 Warning: Failure at t=3.765257e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #75 RUNNING ... #74 RUNNING ... #86 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 Warning: Failure at t=1.150548e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest valu...
Combination #475
Elapsed time is 63.428537 seconds.
Combination #476
RUNNING ... #9 Warning: Failure at t=1.051471e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.048726e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.171014e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.091058e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.232451e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.014041e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.105232e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.078090e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 Warning: Failure at t=1.092834e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171...
Combination #476
Elapsed time is 33.226065 seconds.
Combination #477
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #54 Warning: Failure at t=1.200186e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 RUNNING ... #71 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=1.801434e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 Warning: Failure at t=1.124865e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.219477e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #107 Warning: Failure at t=1.146906e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #25 Warning: Failure at t=1.214887e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.159586e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.092488e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 Warning: Failure at t=1.150047e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #32 Warning: Failure at t=1.110013e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_gener...
Combination #477
Elapsed time is 77.872284 seconds.
Combination #478
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.123423e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.158055e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.391776e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009188e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #93 RUNNING ... #104 RUNNING ... #1 RUNNING ... #25 Warning: Failure at t=1.242118e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=1.688901e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.953212e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 Warning: Failure at t=1.251689e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 Warning: Failure at t=1.111190e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the...
Combination #478
Elapsed time is 80.333319 seconds.
Combination #479
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 RUNNING ... #25 Warning: Failure at t=1.411636e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #87 RUNNING ... #86 RUNNING ... #96 Warning: Failure at t=3.142219e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #15 RUNNING ... #14 RUNNING ... #32 Warning: Failure at t=1.137084e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=3.489594e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #79 RUNNING ... #78 RUNNING ... #93 RUNNING ... #3 RUNNING ... #2 Warning: Failure at t=2.900248e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.067075e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #40 RUNNING ... #39 RUNNING ... #57 RUNNING ... #56 RUNNING ... #77 RUNNING ... #76 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 Warning: Failure at t=2.088336e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet...
Combination #479
Elapsed time is 102.151531 seconds.
Combination #480
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #44 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=7.005599e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #5 Warning: Failure at t=4.068668e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #4 Warning: Failure at t=1.513101e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.143394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.845939e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068213e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009382e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #20 RUNNING ... #19 RUNNING ... #48 RUNNING ... #740 RUNNING ... #73 RUNNING ... #92 RUNNING ... #91 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #82 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #47 RUNNING ... #46 RUNNING ... #56 RUNNING ... #55 Warning: Failure at t=1.363198e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the sma...
Combination #480
Elapsed time is 80.456526 seconds.
Combination #481
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=2.916935e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 RUNNING ... #25 Warning: Failure at t=1.329338e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.059358e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=2.475964e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.126829e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.625365e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.064979e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #51 Warning: Failure at t=2.498130e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=2.008045e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 Warning: Failure at t=9.024252e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_chann...
Combination #481
Elapsed time is 78.196383 seconds.
Combination #482
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.667855e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #108 RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.311232e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #61 RUNNING ... #60 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 RUNNING ... #86 Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.235729e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.110706e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #42 RUNNING ... #41 RUNNING ... #51 Warning: Failure at t=1.487150e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #79 RUNNING ... #78 RUNNING ... #85 RUNNING ... #84 Warning: Failure at t=2.037482e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.518243e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #21 RUNNING ... #20 RUNNING ... #28 Warning: Failure at t=1.060874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_genera...
Combination #482
Elapsed time is 89.357913 seconds.
Combination #483
RUNNING ... #9 Warning: Failure at t=1.091875e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.057904e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.293372e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.046733e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.185329e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 Warning: Failure at t=1.059999e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.248724e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.190408e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.2737...
Combination #483
Elapsed time is 40.006868 seconds.
Combination #484
RUNNING ... #9 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.685202e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=4.016867e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 Warning: Failure at t=1.443228e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #32 Warning: Failure at t=1.143705e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068661e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=6.840534e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009391e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warnin...
Combination #484
Elapsed time is 364.103464 seconds.
Combination #485
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #71 RUNNING ... #70 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #107 Warning: Failure at t=1.724695e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=1.223100e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.185938e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=1.346885e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.550104e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.096800e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #69 RUNNING ... #68 RUNNING ... #79 Warning: Failure at t=1.705197e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.431844e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #15 RUNNING ... #14 Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/chann...
Combination #485
Elapsed time is 80.035758 seconds.
Combination #486
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009580e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #107 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.078713e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #20 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #74 RUNNING ... #73 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #101 RUNNING ... #100 RUNNING ... #182 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.038532e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #47 RUNNING ... #46 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #177 RUNNING ... #176 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #419 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #649 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #815 RUNNING ... #814 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #973 RUNNING ... #972 RUNNING ... #971 RUNNING ... #970 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 Warning: Failure at t=1.075005e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #498 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #648 Warning: Failure at t=1.038242e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #647 RUNNING ... #646 RUNNING ... #645 RUNNING ... #644 RUNNING ... #810 RUNNING ... #809 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #969 Warning: Failure at t=1.143294e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelF...
Combination #486
Elapsed time is 45.549908 seconds.
Combination #487
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.997061e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.291217e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.252194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 Warning: Failure at t=2.205346e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.761747e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.060712e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #87 RUNNING ... #86 Warning: Failure at t=1.183158e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #85 RUNNING ... #84 RUNNING ... #98 RUNNING ... #97 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #4 Warning: Failure at t=1.388030e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #49 RUNNING ... #48 RUNNING ... #47 Warning: Failure at t=1.367687e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #56 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.308280e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) ...
Combination #487
Elapsed time is 76.814505 seconds.
Combination #488
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #107 RUNNING ... #106 RUNNING ... #4 Warning: Failure at t=1.519156e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #14 RUNNING ... #25 Warning: Failure at t=1.979694e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 Warning: Failure at t=4.803419e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009347e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #86 RUNNING ... #85 RUNNING ... #94 RUNNING ... #93 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #56 RUNNING ... #55 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #92 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 Warning: Failure at t=1.144509e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068662e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #91 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #47 RUNNING ... #46 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 Warning: Failure at t=4.362119e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #740 Warning: Failure at t=1.401417e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13)...
Combination #488
Elapsed time is 67.762805 seconds.
Combination #489
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.127563e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.138874e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 Warning: Failure at t=3.282795e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.097075e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.204524e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=1.201445e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 Warning: Failure at t=1.156140e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #98 Warning: Failure at t=1.177357e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=1.219559e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #108 Warning: Failure at t=1.062917e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 Warning: Failure at t=1.164349e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelF...
Combination #489
Elapsed time is 49.948749 seconds.
Combination #490
RUNNING ... #9 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.127984e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.303838e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #54 RUNNING ... #53 RUNNING ... #63 RUNNING ... #90 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 Warning: Failure at t=1.321501e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 Warning: Failure at t=1.055420e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #44 RUNNING ... #43 RUNNING ... #52 Warning: Failure at t=1.107799e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.671505e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.042991e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 Warning: Failure at t=1.094983e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #72 Warning: Failure at t=6.513714e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #87 RUNNING ... #86 RUNNING ... #96 Warning: Failure at t=2.211414e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #104 RUNNING ... #5 Warning: Failure at t=1.172869e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273...
Combination #490
Elapsed time is 106.410605 seconds.
Combination #491
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #26 Warning: Failure at t=2.568902e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 RUNNING ... #34 RUNNING ... #44 RUNNING ... #43 Warning: Failure at t=3.077363e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #81 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.302561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #107 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=2.399850e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.091452e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=6.950804e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.150371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #59 RUNNING ... #58 RUNNING ... #57 Warning: Failure at t=1.538688e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009325e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #14 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 RUNNING ... #25 Warning: Failure at t=1.455931e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=6.891597e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #22 Warning: Failure at t=3.066394e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 Warning: Failure at t=1.696135e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #41 RUNNING ... #40 RUNNING ... #56 Warning: Failure at t=2.138462e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #740 Warning: Failure at t=1.785437e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_gen...
Combination #491
Elapsed time is 80.340660 seconds.
Combination #492
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #85 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #20 RUNNING ... #19 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.079522e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #260 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #655 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #259 Warning: Failure at t=1.039975e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #255 RUNNING ... #254 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 Warning: Failure at t=2.796324e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #571 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #650 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #887 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #250 RUNNING ... #249 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #493 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet i...
Combination #492
Elapsed time is 36.000572 seconds.
Combination #493
RUNNING ... #9 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.170425e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.264039e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #63 RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 Warning: Failure at t=4.071350e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #71 RUNNING ... #70 RUNNING ... #90 RUNNING ... #89 RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #36 RUNNING ... #35 RUNNING ... #45 Warning: Failure at t=2.211827e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (4.547474e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.145107e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #51 Warning: Failure at t=1.396396e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 Warning: Failure at t=1.074272e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 Warning: Failure at t=1.174450e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #66 Warning: Failure at t=1.009002e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 Warning: Failure at t=1.120987e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #81 RUNNING ... #80 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #108 Warning: Failure at t=1.093353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>m...
Combination #493
Elapsed time is 64.052666 seconds.
Combination #494
RUNNING ... #9 Warning: Failure at t=1.088430e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.106171e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.540561e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.180733e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #5 Warning: Failure at t=1.551707e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=1.213820e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=1.226033e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 Warning: Failure at t=1.199976e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #27 RUNNING ... #36 Warning: Failure at t=1.111783e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.105632e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the ...
Combination #494
Elapsed time is 39.427830 seconds.
Combination #495
RUNNING ... #9 RUNNING ... #18 RUNNING ... #36 RUNNING ... #54 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #98 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 RUNNING ... #25 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 Warning: Failure at t=1.150194e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #45 RUNNING ... #44 RUNNING ... #43 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #21 RUNNING ... #20 Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 Warning: Failure at t=1.068328e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #42 RUNNING ... #41 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #50 RUNNING ... #49 RUNNING ... #48 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=3.007766e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #55 RUNNING ... #66 Warning: Failure at t=1.009353e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #77 RUNNING ... #76 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #104 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 Warning: Failure at t=1.148567e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #262 RUNNING ... #261 RUNNING ... #19 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #47 RUNNING ... #46 RUNNING ... #92 RUNNING ... #91 RUNNING ... #260 RUNNING ... #259 Warning: Failure at t=1.036799e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #258 RUNNING ... #257 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ...
Combination #495
Elapsed time is 360.806181 seconds.
Combination #496
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #26 RUNNING ... #35 RUNNING ... #44 RUNNING ... #43 RUNNING ... #53 RUNNING ... #52 RUNNING ... #62 RUNNING ... #61 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #80 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #14 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #68 RUNNING ... #67 RUNNING ... #66 Warning: Failure at t=1.009279e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 RUNNING ... #86 RUNNING ... #104 RUNNING ... #4 Warning: Failure at t=1.442601e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #3 RUNNING ... #2 RUNNING ... #25 Warning: Failure at t=1.354708e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #42 RUNNING ... #41 RUNNING ... #57 RUNNING ... #56 Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #65 RUNNING ... #64 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 Warning: Failure at t=2.596924e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #103 RUNNING ... #102 RUNNING ... #101 RUNNING ... #1 RUNNING ... #13 RUNNING ... #12 RUNNING ... #11 Warning: Failure at t=1.126767e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #31 RUNNING ... #30 RUNNING ... #29 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 Warning: Failure at t=2.285478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. ...
Combination #496
Elapsed time is 89.523898 seconds.
Combination #497
RUNNING ... #9 RUNNING ... #18 RUNNING ... #27 RUNNING ... #36 RUNNING ... #45 RUNNING ... #54 RUNNING ... #63 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #87 RUNNING ... #86 RUNNING ... #99 RUNNING ... #108 RUNNING ... #8 RUNNING ... #7 RUNNING ... #6 RUNNING ... #5 RUNNING ... #4 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 RUNNING ... #16 RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #26 RUNNING ... #25 RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 RUNNING ... #22 RUNNING ... #35 RUNNING ... #34 RUNNING ... #33 RUNNING ... #32 RUNNING ... #31 RUNNING ... #44 RUNNING ... #43 RUNNING ... #42 RUNNING ... #41 RUNNING ... #53 RUNNING ... #52 RUNNING ... #51 RUNNING ... #50 RUNNING ... #49 RUNNING ... #62 RUNNING ... #61 RUNNING ... #60 RUNNING ... #59 RUNNING ... #58 RUNNING ... #71 RUNNING ... #70 RUNNING ... #69 RUNNING ... #68 RUNNING ... #67 RUNNING ... #80 RUNNING ... #79 RUNNING ... #78 RUNNING ... #77 RUNNING ... #76 RUNNING ... #98 RUNNING ... #97 RUNNING ... #96 RUNNING ... #95 RUNNING ... #94 RUNNING ... #93 RUNNING ... #92 RUNNING ... #91 RUNNING ... #107 RUNNING ... #106 RUNNING ... #105 RUNNING ... #104 RUNNING ... #103 RUNNING ... #3 RUNNING ... #2 RUNNING ... #1 RUNNING ... #12 RUNNING ... #11 RUNNING ... #10 RUNNING ... #21 RUNNING ... #20 RUNNING ... #19 RUNNING ... #30 RUNNING ... #29 RUNNING ... #28 RUNNING ... #40 RUNNING ... #39 Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.634562e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.663456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.363456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.063456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.763456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.463456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.163456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.863456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.563456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.963456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.263456e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #38 RUNNING ... #37 RUNNING ... #48 RUNNING ... #47 RUNNING ... #46 RUNNING ... #57 RUNNING ... #56 RUNNING ... #55 RUNNING ... #66 RUNNING ... #65 RUNNING ... #64 RUNNING ... #75 RUNNING ... #74 RUNNING ... #73 RUNNING ... #85 RUNNING ... #84 RUNNING ... #83 RUNNING ... #82 RUNNING ... #102 RUNNING ... #101 RUNNING ... #100 RUNNING ... #187 RUNNING ... #186 RUNNING ... #185 RUNNING ... #184 RUNNING ... #183 RUNNING ... #182 RUNNING ... #266 RUNNING ... #265 RUNNING ... #264 RUNNING ... #263 RUNNING ... #262 RUNNING ... #261 RUNNING ... #424 RUNNING ... #423 RUNNING ... #422 RUNNING ... #421 RUNNING ... #420 RUNNING ... #419 RUNNING ... #503 RUNNING ... #502 RUNNING ... #501 RUNNING ... #500 RUNNING ... #499 RUNNING ... #498 RUNNING ... #582 RUNNING ... #581 RUNNING ... #580 RUNNING ... #579 RUNNING ... #578 RUNNING ... #577 RUNNING ... #661 RUNNING ... #660 RUNNING ... #659 RUNNING ... #658 RUNNING ... #657 RUNNING ... #656 RUNNING ... #740 RUNNING ... #739 RUNNING ... #738 RUNNING ... #737 RUNNING ... #736 RUNNING ... #735 RUNNING ... #819 RUNNING ... #818 RUNNING ... #817 RUNNING ... #816 RUNNING ... #815 RUNNING ... #814 RUNNING ... #898 RUNNING ... #897 RUNNING ... #896 RUNNING ... #895 RUNNING ... #894 RUNNING ... #893 RUNNING ... #977 RUNNING ... #976 RUNNING ... #975 RUNNING ... #974 RUNNING ... #973 RUNNING ... #972 RUNNING ... #1056 RUNNING ... #1055 RUNNING ... #1054 RUNNING ... #1053 RUNNING ... #1052 RUNNING ... #1051 RUNNING ... #181 RUNNING ... #180 RUNNING ... #179 RUNNING ... #178 RUNNING ... #177 RUNNING ... #260 RUNNING ... #259 RUNNING ... #258 RUNNING ... #257 RUNNING ... #256 RUNNING ... #345 RUNNING ... #344 RUNNING ... #343 RUNNING ... #342 RUNNING ... #341 RUNNING ... #340 RUNNING ... #418 RUNNING ... #417 RUNNING ... #416 RUNNING ... #415 RUNNING ... #414 RUNNING ... #497 RUNNING ... #496 RUNNING ... #495 RUNNING ... #494 RUNNING ... #493 RUNNING ... #576 RUNNING ... #575 RUNNING ... #574 RUNNING ... #573 RUNNING ... #572 RUNNING ... #655 RUNNING ... #654 RUNNING ... #653 RUNNING ... #652 RUNNING ... #651 RUNNING ... #734 RUNNING ... #733 RUNNING ... #732 RUNNING ... #731 RUNNING ... #730 RUNNING ... #813 RUNNING ... #812 RUNNING ... #811 RUNNING ... #810 RUNNING ... #809 RUNNING ... #892 RUNNING ... #891 RUNNING ... #890 RUNNING ... #889 RUNNING ... #888 RUNNING ... #971 RUNNING ... #970 RUNNING ... #969 RUNNING ... #968 RUNNING ... #967 RUNNING ... #1050 RUNNING ... #1049 RUNNING ... #1048 RUNNING ... #1047 RUNNING ... #1046 RUNNING ... #176 RUNNING ... #175 RUNNING ... #174 RUNNING ... #173 RUNNING ... #172 RUNNING ... #255 RUNNING ... #254 RUNNING ... #253 RUNNING ... #252 RUNNING ... #251 RUNNING ... #339 RUNNING ... #338 RUNNING ... #337 RUNNING ... #336 RUNNING ... #335 RUNNING ... #413 RUNNING ... #412 RUNNING ... #411 RUNNING ... #410 RUNNING ... #409 Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.975045e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.697504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.397504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.097504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.797504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.497504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.197504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.897504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.597504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.997504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.297504e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #492 RUNNING ... #491 RUNNING ... #490 RUNNING ... #489 RUNNING ... #488 RUNNING ... #487 RUNNING ... #571 RUNNING ... #570 RUNNING ... #569 RUNNING ... #568 RUNNING ... #567 RUNNING ... #650 RUNNING ... #649 RUNNING ... #648 RUNNING ... #647 RUNNING ... #646 RUNNING ... #729 RUNNING ... #728 RUNNING ... #727 RUNNING ... #726 RUNNING ... #808 RUNNING ... #807 RUNNING ... #806 RUNNING ... #805 RUNNING ... #804 RUNNING ... #887 RUNNING ... #886 RUNNING ... #885 RUNNING ... #884 RUNNING ... #966 RUNNING ... #965 RUNNING ... #964 RUNNING ... #963 RUNNING ... #962 RUNNING ... #1045 RUNNING ... #1044 RUNNING ... #1043 RUNNING ... #1042 RUNNING ... #1041 Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.906312e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.790631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.490631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.190631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.890631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.590631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.290631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.990631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.690631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.090631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.390631e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #171 RUNNING ... #170 RUNNING ... #169 RUNNING ... #168 RUNNING ... #250 RUNNING ... #249 RUNNING ... #248 RUNNING ... #247 RUNNING ... #246 RUNNING ... #334 RUNNING ... #333 RUNNING ... #332 RUNNING ... #331 RUNNING ... #330 RUNNING ... #408 RUNNING ... #407 RUNNING ... #406 RUNNING ... #405 RUNNING ... #404 RUNNING ... #486 RUNNING ... #485 RUNNING ... #484 RUNNING ... #483 RUNNING ... #482 RUNNING ... #566 Warning: Failure at t=2.587727e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (9.094947e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #565 RUNNING ... #564 RUNNING ... #563 RUNNING ... #645 RUNNING ... #644 RUNNING ... #643 RUNNING ... #642 RUNNING ... #641 RUNNING ... #725 RUNNING ... #724 RUNNING ... #723 RUNNING ... #722 RUNNING ... #883 RUNNING ... #882 RUNNING ... #881 RUNNING ... #880 RUNNING ... #879 RUNNING ... #961 RUNNING ... #960 RUNNING ... #959 RUNNING ... #958 RUNNING ... #957 RUNNING ... #1040 RUNNING ... #1039 RUNNING ... #1038 RUNNING ... #1037 RUNNING ... #1036 RUNNING ... #245 RUNNING ... #244 RUNNING ... #243 RUNNING ... #242 RUNNING ... #241 Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.957372e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.695737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.395737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.095737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.795737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.495737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.195737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.895737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.595737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.995737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.295737e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #329 RUNNING ... #328 RUNNING ... #327 RUNNING ... #326 RUNNING ... #325 RUNNING ... #481 RUNNING ... #480 RUNNING ... #479 RUNNING ... #478 RUNNING ... #477 RUNNING ... #562 RUNNING ... #561 RUNNING ... #560 RUNNING ... #559 RUNNING ... #640 RUNNING ... #639 RUNNING ... #638 RUNNING ... #637 RUNNING ... #636 RUNNING ... #721 RUNNING ... #720 RUNNING ... #719 RUNNING ... #718 RUNNING ... #717 RUNNING ... #803 Warning: Failure at t=1.135712e+02. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #802 RUNNING ... #801 RUNNING ... #800 RUNNING ... #878 RUNNING ... #877 RUNNING ... #876 RUNNING ... #875 RUNNING ... #874 RUNNING ... #1035 RUNNING ... #1034 RUNNING ... #1033 RUNNING ... #1032 RUNNING ... #1031 RUNNING ... #167 RUNNING ... #166 RUNNING ... #165 RUNNING ... #164 RUNNING ... #163 RUNNING ... #324 RUNNING ... #323 RUNNING ... #322 RUNNING ... #321 RUNNING ... #320 RUNNING ... #403 RUNNING ... #402 RUNNING ... #401 RUNNING ... #400 RUNNING ... #399 RUNNING ... #558 RUNNING ... #557 RUNNING ... #556 RUNNING ... #555 RUNNING ... #554 RUNNING ... #716 RUNNING ... #715 RUNNING ... #714 RUNNING ... #713 RUNNING ... #712 RUNNING ... #799 RUNNING ... #798 RUNNING ... #797 RUNNING ... #796 RUNNING ... #795 RUNNING ... #956 RUNNING ... #955 RUNNING ... #954 RUNNING ... #953 RUNNING ... #952 RUNNING ... #1030 RUNNING ... #1029 RUNNING ... #1028 RUNNING ... #1027 RUNNING ... #1026 Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.973021e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.797302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.497302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.197302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.897302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.597302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.297302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.997302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.697302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.097302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.397302e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #162 RUNNING ... #161 RUNNING ... #160 RUNNING ... #159 RUNNING ... #158 RUNNING ... #240 Warning: Failure at t=8.646197e+00. Unable to meet integration tolerances without reducing the step size below t...
Combination #497
Elapsed time is 37.504585 seconds.
Combination #498
RUNNING ... #9 Warning: Failure at t=1.273599e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 RUNNING ... #7 Warning: Failure at t=2.289798e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #6 Warning: Failure at t=1.623948e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=4.520883e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 Warning: Failure at t=2.093035e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #35 RUNNING ... #34 Warning: Failure at t=2.164708e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #54 RUNNING ... #63 Warning: Failure at t=5.310038e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 RUNNING ... #61 RUNNING ... #72 RUNNING ... #81 RUNNING ... #90 Warning: Failure at t=1.183573e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #89 Warning: Failure at t=1.982154e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #88 Warning: Failure at t=2.533596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #99 RUNNING ... #98 RUNNING ... #97 RUNNING ... #108 Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #15 RUNNING ... #14 RUNNING ... #13 RUNNING ... #27 RUNNING ... #26 Warning: Failure at t=1.881133e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.268552e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed ...
Combination #498
Elapsed time is 60.800888 seconds.
Combination #499
RUNNING ... #9 Warning: Failure at t=1.085541e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #8 Warning: Failure at t=1.092708e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #7 Warning: Failure at t=1.270231e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.103205e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 Warning: Failure at t=1.223680e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #25 Warning: Failure at t=1.212371e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.910268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.610268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.310268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.010268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #23 Warning: Failure at t=1.155081e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 Warning: Failure at t=1.088596e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #35 Warning: Failure at t=1.093530e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value...
Combination #499
Elapsed time is 43.224603 seconds.
Combination #500
RUNNING ... #9 RUNNING ... #8 Warning: Failure at t=1.261486e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #18 RUNNING ... #27 Warning: Failure at t=1.104209e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #26 RUNNING ... #25 Warning: Failure at t=1.254698e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #24 Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.421085e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.102680e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.710268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.410268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.110268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #36 RUNNING ... #45 RUNNING ... #63 Warning: Failure at t=1.475851e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #62 Warning: Failure at t=1.190397e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #61 RUNNING ... #60 RUNNING ... #72 RUNNING ... #81 Warning: Failure at t=1.113018e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #80 Warning: Failure at t=1.603897e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #79 RUNNING ... #78 Warning: Failure at t=1.288814e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.800000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.500000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #90 RUNNING ... #89 RUNNING ... #88 RUNNING ... #108 Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=9.334782e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=1.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=2.633478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (5.684342e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.333478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.033478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.733478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.433478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.133478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.833478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.533478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.933478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.233478e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #17 Warning: Failure at t=3.826736e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.200000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.900000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=5.600000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.300000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=6.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.000000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=7.700000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.100000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=8.400000e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.273737e-13) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) RUNNING ... #16 RUNNING ... #15 Warning: Failure at t=1.485190e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.842171e-14) at time t. > In ode15s (line 715) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.510268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=3.810268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel_function>make_general_channel/channel_general (line 832) In remoteParallelFunction (line 67) Warning: Failure at t=4.210268e+01. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (1.136868e-13) at time t. > In ode15s (line 653) In parallel...
Combination #500
Elapsed time is 77.811289 seconds.
tend = toc(t);
disp(strcat(num2str(tend/3600), " hours"))
18.7623 hours
Outputs saved include:

4. Visualize the Results

output_fdr_nm = 'result_workspaces/F4/';
load(strcat(output_fdr_nm,'F4_Systematic_LactinV_Probiotic.mat'))
Workspace contents:
  1. all_select_outcomes: Numbers Strains x Simulated Patients x Timepoints x [time point, nAB, Li, oLB, Probiotic] Abundance
  2. all_warnall: Indicates runs without errors (1 = no error, 0 = error)
  3. newValueMat: Probiotic strain parameter values (Numbers Strains x Strain Parameters)
  4. POPinfo: Structure with information on simulated population
  5. PROBinfo: Structure with information about probiotic
  6. ABXinfo: Structure with antibiotic information
% NOTE: Lactin-V is evaluated at 12 weeks and 24 weeks after initial
% probiotic dosing. This corresponds to index 12 and 14 of
% all_select_outcomes
 
[param_names,SSnms,sp_cols,time_names] = get_naming_terms();
time_id = [12 14]; % 12 or 24 weeks
numPatients = size(all_select_outcomes,2);
numStrains = size(strainListLHS,1);
numODEwarnings = sum(all_warnall==0,2);
 
errorThreshODE = 1; % must have a least one successful run (no ODE solver errors)
 
% collect information about response counts and frequencies
strainCounts12 = NaN(numStrains,4);
strainFrequency12 = NaN(numStrains,4);
strainCounts24 = NaN(numStrains,4);
strainFrequency24 = NaN(numStrains,4);
 
% loop through each "strain" (newValueMat combination)
for strain_id = 1:numStrains
warn_id = all_warnall(strain_id,:) == 1;
if sum(warn_id) > errorThreshODE
CST_post = get_CST_post(squeeze(all_select_outcomes(strain_id,warn_id,time_id(1),2:end)));
Counts = [sum(CST_post == 1),sum(CST_post == 2),sum(CST_post == 3),sum(CST_post == 4)];
Frequency = Counts ./ sum(Counts);
strainCounts12(strain_id,:) = Counts;
strainFrequency12(strain_id,:) = Frequency;
 
CST_post = get_CST_post(squeeze(all_select_outcomes(strain_id,warn_id,time_id(2),2:end)));
Counts = [sum(CST_post == 1),sum(CST_post == 2),sum(CST_post == 3),sum(CST_post == 4)];
Frequency = Counts ./ sum(Counts);
strainCounts24(strain_id,:) = Counts;
strainFrequency24(strain_id,:) = Frequency;
end
end
disp('Maximum Response Frequency 12wks: nAB, Li, oLB, Probiotic:')
Maximum Response Frequency 12wks: nAB, Li, oLB, Probiotic:
disp(max(strainFrequency12*100))
100 100 100 100
 
disp('Maximum Response Frequency 12wks: nAB, Li, oLB, Probiotic:')
Maximum Response Frequency 12wks: nAB, Li, oLB, Probiotic:
disp(max(strainFrequency24*100))
100 100 100 100
Identify Strain with Most Similar Trends to Lactin-V in Cohen et al. 2020
ClinicalRecur = [46 59]; % Number of patients that were BV+ by week 12, week 24
ClinicalCure = [87 63]; % Number of patients that were not BV+ by week 12, week 24
ClinicalN = ClinicalCure + ClinicalRecur; % Total number of patients with known outcome
ClinicalResults = (ClinicalRecur./ClinicalN)*100; % Frequency of Recurrence (BV+/nAB dominance)
 
% Loop through results, collect distance from clinical result
tot_dist = NaN(size(strainFrequency12,1),1);
for resp_id = 1:size(strainFrequency12,1)
tmp12 = strainFrequency12(resp_id,1)*100; % Frequency of nAB dominated states at 12 weeks
tmp24 = strainFrequency24(resp_id,1)*100; % Frequency of nAB dominated states at 24 weeks
 
d12 = abs(tmp12-ClinicalResults(1)); % absolute distance at 12 week
d24 = abs(tmp24-ClinicalResults(2)); % absolute distance at 24 week
tot_dist(resp_id) = d12 + d24; % total distance
end
 
errorThreshODE = 500; % threshold for the number of successful runs (244 gives 1000 "good" runs)
errorThreshLV = 5; % absolute deviation from clinical resuls (wk12 + wk24)
 
er_id = numODEwarnings <= errorThreshODE;
 
f4a = figure;
histogram(tot_dist(er_id))
% quick viz of results:
title('Absolute Distance from Clinical Observation')
ylabel('Frequency');xlabel('Deviation from Clinical Frequency');
set(f4a,'Visible','on')
 
% select acceptable deviation from clinical results
dis_id = tot_dist < errorThreshLV; % total percent different
LV_strains = strainListLHS(dis_id & er_id,:);
Analyze Strain Characteristics that Met Error Criteria (errorThreshLV)
subplot(1,4,1)
boxchart(LV_strains(:,1));
hold on
x = repmat(1,size(LV_strains,1),1);
s1 = swarmchart(x,LV_strains(:,1),[],'red','XJitterWidth',0.5);
xticklabels(param_names(PROBinfo.strainCharIndexes(1)))
ylabel('Parameter Value')
title('Growth Term')
 
subplot(1,4,[2,4])
boxchart(LV_strains(:,2:end))
hold on
x = repmat(1:size(LV_strains,2)-1,size(LV_strains,1),1);
s2 = swarmchart(x,LV_strains(:,2:end),[],'red','XJitterWidth',0.5);
xticklabels(param_names(PROBinfo.strainCharIndexes(2:end)))
ylabel('Parameter Value')
hold on
yline(0,'k')
title('Interaction Terms')
 
set(gcf,'units','pixels','position',[1 1 900 300])

Top Performing Strains

Some of the testing probiotic strains were able to uniformly promote dominance of a certain community member across a majority of the virtual patients.
For example, the top peforming strain that promoted Li-dominance could do so acroass 86% of the virtual population.
%% Visualize Top Performing Strains
X = strainFrequency24; % or strainFrequency12
 
disp('Top Performing Strain - Percentatge of Subjects with nAB, Li, oLB, and P-dominance')
Top Performing Strain - Percentatge of Subjects with nAB, Li, oLB, and P-dominance
disp(prctile(strainFrequency24(er_id,:)*100,100))
90.9509 86.0640 73.2713 100.0000
 
sortThresh = prctile(strainFrequency24(er_id,:),90); % analyze 90th percentile strains
 
[~,Response_Label] = max(X,[],2);
Response_Label(isnan(X(:,1))) = -1;
bestStrains = cell(5,1);
bestStrains(5) = {strainListLHS(tot_dist == min(tot_dist(er_id)),:)};
for resp_id = 1:4
ridx = Response_Label == resp_id;
eidx = numODEwarnings <= errorThresh;
aidx = X(:,resp_id) > sortThresh(resp_id);
 
selected_strains = strainListLHS(ridx & eidx & aidx,:);
 
Xtmp = max(X(ridx & eidx & aidx,resp_id));
 
bestStrains(resp_id) = {strainListLHS(ridx & eidx & X(:,resp_id) == Xtmp,:)};
 
figure;
subplot(1,4,1)
boxchart(selected_strains(:,1));
hold on
x = repmat(1,size(selected_strains,1),1);
s1 = swarmchart(x,selected_strains(:,1),[],'red','XJitterWidth',0.5);
xticklabels(param_names(PROBinfo.strainCharIndexes(1)))
ylabel('Parameter Value')
title('Growth Term')
subplot(1,4,[2,4])
boxchart(selected_strains(:,2:end))
hold on
x = repmat(1:size(selected_strains,2)-1,size(selected_strains,1),1);
s2 = swarmchart(x,selected_strains(:,2:end),[],'red','XJitterWidth',0.5);
xticklabels(param_names(PROBinfo.strainCharIndexes(2:end)))
ylabel('Parameter Value')
hold on
yline(0,'k')
title('Interaction Terms')
set(gcf,'units','pixels','position',[1 1 900 300])
end
 
save(strcat(output_fdr_nm,'F4_Systematic_LactinV_Probiotic.mat'),'bestStrains','-append')
PLS-DA Model
The PLS-DA model is run on a subset of the tested probiotic strains (only including strains that had a "dominant response", e.g., a response type that was observed over a certain percentage of the population.
The PLS Toolbox was used to create the PLS-DA model using MATLAB 2017b. MATLAB 2017b is not compatibable with live scripts, so the workspace was generated and imported into this file.
errorThresh = 500;
X = strainFrequency24; % or strainFrequency12
 
[~,lb] = max(X,[],2); % classify by nAB/Li/oLB/P is dominant response profile
lb(isnan(X(:,1))) = -1; % remove entries with NaN
 
prism_dat = [];
Xblock = [];
yblock = [];
c = 1;
for i = [1 2 3 4]
tmp = strainListLHS(lb == i & numODEwarnings <= errorThresh,:);
Xblock = [Xblock;tmp];
yblock = [yblock;repmat(c,size(tmp,1),1)];
c = c + 1;
end
 
% ~~~~~~~~ Uncomment to Compare BV+ / BV-
% yblock(yblock == 3) = 2;
% yblock(yblock == 4) = 2;
% classes = {'nAB','LB'};
% filettl = '___________-24wk-LV-BVefficacy';
% ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
classes = {'nAB','Li','oLB','P'};
ynames = param_names(PROBinfo.strainCharIndexes);
Yblock = dummyvar(yblock);
filettl = '___________-24wk-LV-ResponseTypes';
 
ttl = '';
yname = '';
ep = 1;
[plsda_model,cls_error,cls_error_CV,ellip_points] = fPLSDA(Xblock,...
Yblock,ynames,filettl,classes,yname,ttl,1,ep);
Visualize PLS-DA Results
This code can be run independent of MATLAB version to observe results.
%% Plot PLSDA Results
output_fdr = 'result_workspaces/F4/LV_PLSDA/';
ws_list = {'30-Apr-2023-24wk-LV-BVefficacy_PLSDA_Model.mat',...
'30-Apr-2023-24wk-LV-ResponseTypes_PLSDA_Model.mat', ...
'30-Apr-2023-12wk-LV-BVefficacy_PLSDA_Model.mat',...
'30-Apr-2023-12wk-LV-ResponseTypes_PLSDA_Model.mat'};
 
[~,~,sp_cols,~] = get_naming_terms();
for i = 1:length(ws_list)
load(strcat(output_fdr,ws_list{i}))
 
ttl = strrep(extractBetween(ws_list{i},'2023-','_PLSDA'),'-'," ");
filettl = '';
if length(classes) == 2
colors = [brighten(sp_cols(1,:),-0.5); 0 0.4470 0.7410];
else
colors = sp_cols;
end
 
plot_PLS(LV1_scores, LV2_scores, LV1_loads,LV2_loads,...
yblock, scores_xlabel, scores_ylabel, loads_xlabel, loads_ylabel,...
classes, vip_xnames, "", ttl, filettl,...
errortext,0, scores_num_LVs, ellip_points,colors);
end
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'plsda_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'plsda_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'lowerror_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'lowerror_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model_to_vip' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model_to_vip' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'plsda_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'plsda_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'lowerror_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'lowerror_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model_to_vip' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model_to_vip' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'plsda_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'plsda_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'lowerror_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'lowerror_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model_to_vip' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model_to_vip' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'plsda_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'plsda_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'lowerror_model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'lowerror_model' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model_to_vip' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model_to_vip' have been converted to structures.
Warning: Class 'evrimodel' is an unknown object class or does not have a valid 'loadobj' method. Object 'model' of this class has been converted to a structure.
Warning: Error occurred while trying to call loadobj on a dataset object:
Unrecognized field name "props".
Warning: Class 'dataset' is an unknown object class or does not have a valid 'loadobj' method. Element(s) of this class in array 'model' have been converted to structures.